[package]
edition = "2024"
name = "marwood"
version = "1.0.0"
authors = ["Erik Bremen <strtok@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Scheme R7RS Virtual Machine"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/strtok/marwood"
[lib]
name = "marwood"
path = "src/lib.rs"
[[example]]
name = "adder"
path = "examples/adder.rs"
[[example]]
name = "factorial"
path = "examples/factorial.rs"
[[test]]
name = "common"
path = "tests/common.rs"
[[test]]
name = "continuations"
path = "tests/continuations.rs"
[[test]]
name = "core"
path = "tests/core.rs"
[[test]]
name = "list"
path = "tests/list.rs"
[[test]]
name = "number"
path = "tests/number.rs"
[[test]]
name = "ports"
path = "tests/ports.rs"
[[test]]
name = "predicate"
path = "tests/predicate.rs"
[[test]]
name = "string"
path = "tests/string.rs"
[[test]]
name = "vector"
path = "tests/vector.rs"
[[bench]]
name = "benchmark"
path = "benches/benchmark.rs"
harness = false
[dependencies.lazy_static]
version = "1.5"
[dependencies.log]
version = "0.4"
[dependencies.num]
version = "0.4"
[dependencies.rand]
version = "0.10"
[dependencies.thiserror]
version = "2"
[dev-dependencies.criterion]
version = "0.6"