-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (38 loc) · 1.16 KB
/
Copy pathCargo.toml
File metadata and controls
42 lines (38 loc) · 1.16 KB
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
37
38
39
40
41
42
[package]
name = "lisp"
version = "0.1.0"
edition = "2021"
rust-version = "1.65"
description = "An attempt at a LISP interpreter"
license = "MIT"
readme = "README.md"
authors = ["Ben Kelley"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
cfg-if = "1.0"
thiserror = "1.0"
im = "15.1"
ordered-float = "3.0"
nom = "7.1"
by_address = "1.1"
phf = { version = "0.11", features = ["macros"] }
parking_lot = "0.12"
itertools = "0.10"
rustyline = { version = "11.0", optional = true }
dashmap = "5.5"
derivative = "2.2"
once_cell = "1.18"
[features]
default = ["io-stdlib", "rustyline"]
# Enable functions in the Lisp standard library which require I/O
io-stdlib = []
# Enable a more minimal core that allows the rest of the standard library to be
# built from it. When enabled, the test suite uses this instead of the native
# stdlib (to make sure it works as well). Disabled by default, since the in-
# language implementations are slower and unlikely to be used and so would only
# take up space with strings if unused.
self-implemented = []
[[bin]]
name = "lisp-repl"
required-features = ["rustyline"]
path = "src/main.rs"