-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
39 lines (33 loc) · 871 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
39
[package]
name = "edn-derive"
version = "0.7.0"
authors = ["Eva Pace <[email protected]>", "Julia Boeira <[email protected]>"]
description = "Edn (De)Serialization derive macros"
edition = "2021"
readme = "README.md"
keywords = ["edn"]
documentation = "https://docs.rs/edn-derive/"
repository = "https://github.com/edn-rs/edn-derive"
license = "LGPL-3.0"
autotests = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
proc-macro = true
[[test]]
name = "tests"
path = "tests/progress.rs"
[dependencies]
syn = "2.0"
quote = "1.0"
proc-macro2 = "1.0"
edn-rs = "0.18"
[dev-dependencies]
trybuild = { version = "1.0", features = ["diff"] }
criterion = "0.5"
[dev-dependencies.cargo-husky]
version = "1"
default-features = false
features = ["user-hooks"]
[[bench]]
name = "deserialize"
harness = false