[package]
edition = "2024"
name = "grift_eval"
version = "1.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lisp evaluator for the Grift Scheme language"
documentation = "https://docs.rs/grift_eval"
readme = false
keywords = [
"evaluator",
"lisp",
"scheme",
"no_std",
"embedded",
]
categories = [
"no-std",
"development-tools",
"embedded",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/gold-silver-copper/grift"
resolver = "2"
[lib]
name = "grift_eval"
path = "src/lib.rs"
[[test]]
name = "continuation_delay_tests"
path = "tests/continuation_delay_tests.rs"
[[test]]
name = "issue_tests"
path = "tests/issue_tests.rs"
[[test]]
name = "lib_tests"
path = "tests/lib_tests.rs"
[[test]]
name = "native_tests"
path = "tests/native_tests.rs"
[[test]]
name = "peroxide_pitfalls_tests"
path = "tests/peroxide_pitfalls_tests.rs"
[[test]]
name = "peroxide_r5rs_tests"
path = "tests/peroxide_r5rs_tests.rs"
[[test]]
name = "r5rs_chibi_tests"
path = "tests/r5rs_chibi_tests.rs"
[[test]]
name = "r5rs_pitfalls_tests"
path = "tests/r5rs_pitfalls_tests.rs"
[[test]]
name = "syntactic_extension_html_tests"
path = "tests/syntactic_extension_html_tests.rs"
[[test]]
name = "syntax_edge_case_tests"
path = "tests/syntax_edge_case_tests.rs"
[[test]]
name = "syntax_extended_tests"
path = "tests/syntax_extended_tests.rs"
[[test]]
name = "syntax_proper_tests"
path = "tests/syntax_proper_tests.rs"
[dependencies.grift_arena]
version = "1.3.0"
[dependencies.grift_parser]
version = "1.3.0"
[dev-dependencies.grift_std]
version = "1.3.0"