forked from brundonsmith/rust_lisp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (31 loc) · 775 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "rust_lisp"
description = "A Rust-embeddable Lisp, with support for interop with native Rust functions"
version = "0.18.0"
authors = ["Brandon Smith"]
repository = "https://github.com/brundonsmith/rust_lisp"
edition = "2021"
exclude = [".github", ".vscode", "TODO.txt"]
license = "MIT"
[lib]
name = "rust_lisp"
path = "src/lib.rs"
test = true
doc = true
[[bin]]
name = "rust_lisp"
path = "src/main.rs"
[features]
# What integer to use for Value::Int
bigint = ["num-bigint", "num-traits"]
i128 = []
i64 = []
i16 = []
i8 = []
# Use f64 for Value::Float, if unset, use f32
f64 = []
[dependencies]
cfg-if = "1.0"
libm = { version = "0.2", optional = true }
num-traits = { version = "0.2", optional = true }
num-bigint = { version = "0.4", optional = true }