-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
65 lines (53 loc) · 1.45 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[package]
name = "edn-rs"
version = "0.18.0"
authors = ["Julia Naomi <[email protected]>", "Eva Pace <[email protected]>", "Kevin Nakamura <[email protected]>"]
description = "[DEPRECATED]: Crate to parse and emit EDN"
readme = "README.md"
documentation = "https://docs.rs/edn-rs/"
repository = "https://github.com/edn-rs/edn-rs"
keywords = ["EDN", "no_std"]
license = "MIT"
edition = "2021"
[lints.rust]
rust_2018_idioms = { level = "warn", priority = -1 }
future-incompatible = "warn"
unsafe_code = "deny"
[lints.clippy]
nursery = { level = "deny", priority = -1 }
pedantic = { level = "deny", priority = -1 }
[features]
default = ["sets", "std"]
json = ["regex"]
sets = ["ordered-float"]
std = []
[dependencies]
regex = { version = "1", optional = true }
ordered-float = { version = "4.1", default-features = false, optional = true }
[dev-dependencies]
tokio = { version = "1.33", features = ["full"] }
criterion = "0.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
edn-derive = { git = "https://github.com/edn-rs/edn-derive.git" } # TODO pin to release
[dev-dependencies.cargo-husky]
version = "1"
default-features = false
features = ["user-hooks"]
[[bench]]
name = "parse"
harness = false
[[bench]]
name = "tagged_parse"
harness = false
[[bench]]
name = "serialize"
harness = false
[[example]]
name = "async"
[[example]]
name = "json_to_edn"
required-features = ["json"]
[[example]]
name = "edn_to_json"
required-features = ["json"]