[package]
edition = "2021"
name = "scheme4r"
version = "0.2.3"
authors = ["yangrd <yangrd_1992@sina.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Scheme interpreter for rust"
homepage = "https://github.com/sunxyz/scheme4r"
readme = "README.md"
keywords = [
"scheme",
"rust",
"interpreter",
"eval",
"scheme4r",
]
categories = [
"compilers",
"development-tools",
]
license = "MIT"
repository = "https://github.com/sunxyz/scheme4r"
[lib]
name = "scheme4r"
path = "src/lib.rs"
[[test]]
name = "api"
path = "tests/api.rs"
[[test]]
name = "control"
path = "tests/control.rs"
[[test]]
name = "dicts"
path = "tests/dicts.rs"
[[test]]
name = "io_ports"
path = "tests/io_ports.rs"
[[test]]
name = "libraries"
path = "tests/libraries.rs"
[[test]]
name = "lists"
path = "tests/lists.rs"
[[test]]
name = "macros"
path = "tests/macros.rs"
[[test]]
name = "minimal_kernel"
path = "tests/minimal_kernel.rs"
[[test]]
name = "necessary_features"
path = "tests/necessary_features.rs"
[[test]]
name = "numbers"
path = "tests/numbers.rs"
[[test]]
name = "reader"
path = "tests/reader.rs"
[[test]]
name = "records"
path = "tests/records.rs"
[[test]]
name = "stage3_foundation"
path = "tests/stage3_foundation.rs"
[[test]]
name = "strings"
path = "tests/strings.rs"
[[test]]
name = "tail_calls"
path = "tests/tail_calls.rs"
[[test]]
name = "vectors"
path = "tests/vectors.rs"
[dependencies]