# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "rusche" version = "0.2.4" authors = ["Chan Ryu"] build = false include = [ "/src", "/examples", "/tests", "LICENSE", "README.md", ] autobins = false autoexamples = false autotests = false autobenches = false description = "A lightweight Scheme interpreter embeddable in Rust applications" readme = "README.md" keywords = [ "interpreter", "lisp", "scheme", "scripting", "scripting-language", ] categories = [ "compilers", "config", "parser-implementations", "parsing", ] license = "MIT" repository = "https://github.com/chanryu/rusche" [lib] name = "rusche" path = "src/lib.rs" [[example]] name = "readme-demo" path = "examples/readme-demo/main.rs" [[example]] name = "rusche-cli" path = "examples/rusche-cli/main.rs" [[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" [dependencies] [dev-dependencies.colored] version = "2.1" [dev-dependencies.rustyline] version = "14.0.0" [features] callstack_trace = []