1[package] 2name = "ukey2_connections" 3version.workspace = true 4edition.workspace = true 5publish.workspace = true 6 7[lints] 8workspace = true 9 10[features] 11default = [] 12test_boringssl = ["crypto_provider_default/boringssl"] 13test_rustcrypto = ["crypto_provider_default/rustcrypto"] 14 15[dependencies] 16ukey2_rs = { path = "../ukey2" } 17 18crypto_provider.workspace = true 19rand = { workspace = true, features = ["std", "std_rng"] } 20ukey2_proto.workspace = true 21nom = { version = "7.1.3", features = ["alloc"] } 22bytes = "1.5.0" 23criterion.workspace = true 24 25[dev-dependencies] 26crypto_provider_default.workspace = true 27# This would only be used when the feature "test_rustcrypto" is set, but optional dev-dependencies 28# are not allowed ¯\_(ツ)_/¯ 29crypto_provider_rustcrypto = { workspace = true, features = ["alloc", "std"] } 30 31[[bench]] 32name = "ukey2_benches" 33harness = false 34