feat(raytracer): add native rt functions to lisp

This commit is contained in:
2024-11-28 01:57:40 +01:00
parent 4b227fdd28
commit 6a3348d727
11 changed files with 554 additions and 32 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "lispers"
description = "lisp interpreter in rust"
description = "lisp interpreter in rust for raytracing"
publish = false
version = "0.1.0"
@@ -11,13 +11,17 @@ name = "lispers"
path = "src/lib.rs"
[[bin]]
name = "demo"
path = "src/bin/demo.rs"
name = "lisp_demo"
path = "src/bin/lisp_demo.rs"
[[bin]]
name = "repl"
path = "src/bin/repl.rs"
[[bin]]
name = "rt_lisp_demo"
path = "src/bin/rt_lisp_demo.rs"
[dependencies]
as-any = "0.3.1"
futures = "0.3.30"