You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
694 B
TOML
17 lines
694 B
TOML
1 year ago
|
[package]
|
||
|
name = "ctap2-platform"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
|
||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
|
||
|
[dependencies]
|
||
|
aes = { version = "0.8.2", default-features = false, features = ["zeroize"] }
|
||
|
cbc = { version = "0.1.2", default-features = false, features = ["zeroize"] }
|
||
|
cosey = "0.3.0"
|
||
|
ctap2-proto = { path = "../ctap2-proto" }
|
||
|
hmac = { version = "0.12.1", default-features = false }
|
||
|
p256 = { version = "0.13.2", default-features = false, features = ["ecdh", "sha2", "sha256", "pkcs8"] }
|
||
|
rand = { version = "0.8.5", features = ["getrandom"], default-features = false }
|
||
|
sha2 = { version = "0.10.6", default-features = false }
|