| # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html |
| ukey2_connections = { path = "../ukey2_connections" } |
| ukey2_rs = { path = "../ukey2" } |
| lock_adapter.workspace = true |
| crypto_provider_openssl = { workspace = true, optional = true } |
| crypto_provider_rustcrypto = { workspace = true, optional = true, features = [ "alloc" ] } |
| lazy_static.workspace = true |
| rand_chacha.workspace = true |
| log = { workspace = true, features = ["std"] } |
| openssl = ["dep:crypto_provider_openssl", "std"] |
| rustcrypto = ["crypto_provider_rustcrypto"] |
| std = ["lock_adapter/std", "crypto_provider_rustcrypto/std"] |
| crypto_provider_rustcrypto = ["dep:crypto_provider_rustcrypto"] |