# 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 = "rust_lisp" version = "0.18.0" authors = ["Brandon Smith"] exclude = [ ".github", ".vscode", "TODO.txt", ] description = "A Rust-embeddable Lisp, with support for interop with native Rust functions" readme = "README.md" license = "MIT" repository = "https://github.com/brundonsmith/rust_lisp" [lib] name = "rust_lisp" path = "src/lib.rs" test = true doc = true [[bin]] name = "rust_lisp" path = "src/main.rs" [dependencies.cfg-if] version = "1.0" [dependencies.libm] version = "0.2" optional = true [dependencies.num-bigint] version = "0.4" optional = true [dependencies.num-traits] version = "0.2" optional = true [features] bigint = [ "num-bigint", "num-traits", ] f64 = [] i128 = [] i16 = [] i64 = [] i8 = []