-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (29 loc) · 897 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
[package]
name = "newtype"
version = "0.1.0"
edition = "2021"
[features]
default = []
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.2.7", features = ["derive", "env", "wrap_help"] }
itertools = "0.13.0"
lazy_static = "1.4.0"
lexpr = "0.2.7"
logos = "0.13.0"
nom = "7.1.3"
pest = { version = "2.6.0", features = ["pretty-print"] }
pest_derive = { version = "2.6.0", features = ["grammar-extras"] }
pretty = { version = "0.12.1", features = ["termcolor"] }
pretty_assertions = "1.3.0"
quickcheck = "1.0.3"
rstest = "0.21.0"
serde = { version = "1.0.204", features = ["derive", "rc", "serde_derive"] }
serde-lexpr = "0.1.3"
serde_derive = "1.0.204"
textwrap-macros = "0.3.0"
newtype-macros = { path = "newtype-macros" }
derivative = "2.2.0"
[dev-dependencies]
quickcheck = "1.0.3"
quickcheck_macros = "1.0.0"