[dependencies]
[dev-dependencies.colored]
version = "2.1"
[dev-dependencies.rustyline]
version = "14.0.0"
[[example]]
name = "readme-demo"
path = "examples/readme-demo/main.rs"
[[example]]
name = "rusche-cli"
path = "examples/rusche-cli/main.rs"
[features]
callstack_trace = []
[lib]
name = "rusche"
path = "src/lib.rs"
[package]
authors = ["Chan Ryu"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["compilers", "config", "parser-implementations", "parsing"]
description = "A lightweight Scheme interpreter embeddable in Rust applications"
edition = "2021"
include = ["/src", "/examples", "/tests", "LICENSE", "README.md"]
keywords = ["interpreter", "lisp", "scheme", "scripting", "scripting-language"]
license = "MIT"
name = "rusche"
readme = "README.md"
repository = "https://github.com/chanryu/rusche"
version = "0.2.2"
[[test]]
name = "builtin_tests"
path = "tests/builtin_tests.rs"
[[test]]
name = "common"
path = "tests/common.rs"
[[test]]
name = "gc_tests"
path = "tests/gc_tests.rs"
[[test]]
name = "prelude_tests"
path = "tests/prelude_tests.rs"
[[test]]
name = "quote_tests"
path = "tests/quote_tests.rs"