-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathCargo.toml
38 lines (33 loc) · 993 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
37
38
[package]
name = "lexpr"
description = "A representation for Lisp data"
version = "0.3.0"
authors = ["Andreas Rottmann <[email protected]>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rotty/lexpr-rs"
readme = "README.md"
documentation = "https://docs.rs/lexpr/"
keywords = ["lisp", "s-expression", "sexp", "sexpr"]
categories = ["encoding", "data-structures", "parser-implementations"]
edition = "2021"
rust-version = "1.56"
[features]
default = ["fast-float-parsing"]
fast-float-parsing = []
sexp-macro = ["lexpr-macros"] # MSRV 1.60+: use the `dep:` prefix here
[dependencies]
itoa = "1.0"
ryu = "1.0.0"
lexpr-macros = { version = "0.2.3", path = "../lexpr-macros", optional = true }
[dev-dependencies]
criterion = "0.5.1"
lexpr-macros = { version = "0.2.3", path = "../lexpr-macros" }
quickcheck = "1.0"
quickcheck_macros = "1.0"
rand = "0.8.1"
[[bench]]
name = "bench"
harness = false
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]