feat: init commit,fork from google native-pkcs11
This commit is contained in:
35
native-pkcs11-piv/Cargo.toml
Normal file
35
native-pkcs11-piv/Cargo.toml
Normal file
@@ -0,0 +1,35 @@
|
||||
[package]
|
||||
name = "native-pkcs11-piv"
|
||||
version = "0.2.18"
|
||||
description = "native-pkcs11 backend for macos keychain."
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
rust-version.workspace = true
|
||||
repository.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
native-pkcs11-traits = { version = "0.2.0", path = "../native-pkcs11-traits" }
|
||||
p256 = { version = "0.13.2", default-features = false, features = [
|
||||
"arithmetic",
|
||||
"pkcs8",
|
||||
"std",
|
||||
] }
|
||||
rand = "0.8.5"
|
||||
rsa = { version = "0.9.6", default-features = false, features = ["std"] }
|
||||
# TODO: temporary workaround for RustCrypto/traits#1262, remove after upgrading
|
||||
# the p256 package past 0.13.0.
|
||||
spki = { version = "0.7.3", features = ["std"] }
|
||||
thiserror = "1.0.61"
|
||||
tracing = "0.1.40"
|
||||
tracing-error = { version = "0.2.0", default-features = false }
|
||||
x509-cert = { version = "0.2.5", default-features = false }
|
||||
yubikey = { version = "0.8.0", features = ["untested"] }
|
||||
|
||||
[dev-dependencies]
|
||||
serial_test = { version = "3.1.1", default-features = false }
|
||||
|
||||
[target.'cfg(target_os="macos")'.dependencies]
|
||||
core-foundation = { version = "0.9.4", features = ["mac_os_10_8_features"] }
|
||||
security-framework = { version = "2.11.0", features = ["OSX_10_15"] }
|
||||
security-framework-sys = { version = "2.11.0", features = ["OSX_10_15"] }
|
||||
Reference in New Issue
Block a user