aboutsummaryrefslogtreecommitdiff
path: root/nearby/presence/np_adv/Cargo.toml
blob: 9b576a6304bfb24efa17ff333aaf33d50c6b2df6 (plain)
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
[package]
name = "np_adv"
version.workspace = true
edition.workspace = true
publish.workspace = true

[lints]
workspace = true

[dependencies]
array_view = { path = "../array_view" }
ldt_np_adv.workspace = true
ldt.workspace = true
np_hkdf.workspace = true
np_ed25519.workspace = true
xts_aes.workspace = true
crypto_provider.workspace = true
strum.workspace = true
strum_macros.workspace = true
nom = { version = "7.1.3", default-features = false }
lazy_static.workspace = true
sink.workspace = true
tinyvec.workspace = true

[features]
default = []
devtools = []
testing = []
alloc = ["crypto_provider/alloc"]

[dev-dependencies]
hex.workspace = true
rand.workspace = true
rand_ext = { path = "../rand_ext" }
serde_json = { workspace = true, features = ["std"] }
serde.workspace = true
anyhow.workspace = true
test_helper = { path = "../test_helper" }
criterion.workspace = true
crypto_provider_default = { workspace = true, features = ["std", "rustcrypto"] }
np_ed25519 = { workspace = true, features = ["std"] }
sink = { workspace = true, features = ["std"] }

[[bench]]
name = "deser_adv"
harness = false
required-features = ["alloc", "devtools"]

[[test]]
name = "examples_v0"
path = "tests/examples_v0.rs"
required-features = ["alloc"]

[[test]]
name = "examples_v1"
path = "tests/examples_v1.rs"
required-features = ["alloc"]