[package] name = "opensk" version = "1.0.0" authors = [ "Fabian Kaczmarczyck ", "Guillaume Endignoux ", "Jean-Michel Picod ", "Julien Cretin ", ] license = "Apache-2.0" edition = "2018" rust-version = "1.47" [dependencies] sk-cbor = { path = "../cbor" } crypto = { path = "../crypto" } rng256 = { path = "../rng256" } persistent_store = { path = "../persistent_store" } byteorder = { version = "1", default-features = false } arrayref = "0.3.6" subtle = { version = "2.2", default-features = false, features = ["nightly"] } arbitrary = { version = "0.4.7", features = ["derive"], optional = true } rand = { version = "0.8.4", optional = true } ed25519-compact = { version = "1", default-features = false, optional = true } p256 = { version = "0.13.0", features = ["ecdh"], optional = true } rand_core = { version = "0.6.4", optional = true } [features] debug_ctap = [] std = ["crypto/std", "persistent_store/std", "rng256/std", "rand"] with_ctap1 = ["crypto/with_ctap1"] vendor_hid = [] fuzz = ["arbitrary", "std"] ed25519 = ["ed25519-compact"] rust_crypto = ["p256", "rand_core"] [dev-dependencies] enum-iterator = "0.6.0" [build-dependencies] sk-cbor = { path = "../cbor" } uuid = { version = "0.8", features = ["v4"] } openssl = "0.10.36"