aboutsummaryrefslogtreecommitdiff
path: root/nearby/connections/ukey2/ukey2_connections/Cargo.toml
blob: b1c34a14dedeaafcab8ec573a99380a3c8cd19f2 (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
[package]
name = "ukey2_connections"
version.workspace = true
edition.workspace = true
publish.workspace = true

[lints]
workspace = true

[features]
default = []
test_boringssl = ["crypto_provider_default/boringssl"]
test_rustcrypto = ["crypto_provider_default/rustcrypto"]
test_openssl = ["crypto_provider_default/openssl"]

[dependencies]
ukey2_rs = { path = "../ukey2" }

crypto_provider.workspace = true
rand = { workspace = true, features = ["std", "std_rng"] }
ukey2_proto.workspace = true
nom = { version = "7.1.3", features = ["alloc"] }
bytes = "1.5.0"
criterion.workspace = true

[dev-dependencies]
crypto_provider_default.workspace = true
# This would only be used when the feature "test_rustcrypto" is set, but optional dev-dependencies
# are not allowed ¯\_(ツ)_/¯
crypto_provider_rustcrypto = { workspace = true, features = ["alloc", "std"] }

[[bench]]
name = "ukey2_benches"
harness = false