blob: 8337e96d76c4866f265a99cc2d5757b91fdacea7 [file] [log] [blame]
[package]
name = "ukey2_connections"
version.workspace = true
edition.workspace = true
publish.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.1", features = ["alloc"] }
bytes = "1.2.1"
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