95babac2d4
Note: this is not a release, but bumping the version to reflect breaking changes that have not yet been released. The following dependencies have been upgraded to new stable releases: - `cipher` v0.5 - `der` v0.8 - `sha1` v0.11 - `sha2` v0.11 - `rand(_core)` v0.10 The following dependencies are prereleases which have been upgraded from older prerelease versions: - `aes` v0.9.0-rc.4 - `curve25519-dalek` 5.0.0-pre.6 - `des` v0.9.0-rc.3 - `ecdsa` v0.17.0-rc.16 - `ed25519-dalek` v3.0.0-pre.6 - `elliptic-curve` v0.14.0-rc.29 - `p256` v0.14.0-rc.8 - `p384` v0.14.0-rc.8 - `pbkdf2` v0.13.0-rc.10 - `rsa` v0.10.0-rc.17 - `signature` v3.0.0-rc.10 - `x25519-dalek` v3.0.0-pre.6
69 lines
2.0 KiB
TOML
69 lines
2.0 KiB
TOML
[package]
|
|
name = "yubikey"
|
|
version = "0.9.0-pre"
|
|
description = """
|
|
Pure Rust cross-platform host-side driver for YubiKey devices from Yubico with
|
|
support for hardware-backed public-key decryption and digital signatures using
|
|
the Personal Identity Verification (PIV) application. Supports RSA (1024/2048/3072/4096)
|
|
or ECC (NIST P-256/P-384) algorithms e.g, PKCS#1v1.5, ECDSA
|
|
"""
|
|
authors = ["Tony Arcieri <tony@iqlusion.io>", "Yubico AB"]
|
|
license = "BSD-2-Clause"
|
|
repository = "https://github.com/iqlusioninc/yubikey.rs"
|
|
readme = "README.md"
|
|
categories = ["api-bindings", "authentication", "cryptography", "hardware-support"]
|
|
keywords = ["ecdsa", "encryption", "rsa", "piv", "signature"]
|
|
edition = "2021"
|
|
rust-version = "1.85"
|
|
|
|
[workspace]
|
|
members = [".", "cli"]
|
|
|
|
[workspace.dependencies]
|
|
sha2 = "0.11"
|
|
x509-cert = { version = "0.3.0-rc.4", features = ["builder", "hazmat"] }
|
|
|
|
[dependencies]
|
|
aes = { version = "0.9.0-rc.4", features = ["zeroize"] }
|
|
bitflags = "2.5.0"
|
|
cipher = { version = "0.5", features = ["getrandom", "rand_core"] }
|
|
curve25519-dalek = "5.0.0-pre.6"
|
|
der = "0.8"
|
|
des = "0.9.0-rc.3"
|
|
ecdsa = { version = "0.17.0-rc.16", features = ["digest", "pem"] }
|
|
ed25519-dalek = { version = "3.0.0-pre.6", features = ["alloc", "pkcs8"] }
|
|
elliptic-curve = "0.14.0-rc.29"
|
|
hex = { package = "base16ct", version = "0.2", features = ["alloc"] }
|
|
log = "0.4"
|
|
nom = "8"
|
|
p256 = "0.14.0-rc.8"
|
|
p384 = "0.14.0-rc.8"
|
|
pbkdf2 = { version = "0.13.0-rc.10", default-features = false, features = ["hmac"] }
|
|
pcsc = "2.3.1"
|
|
rand = "0.10"
|
|
rand_core = "0.10"
|
|
rsa = { version = "0.10.0-rc.17", features = ["sha2"] }
|
|
sha1 = { version = "0.11", features = ["oid"] }
|
|
sha2 = { workspace = true, features = ["oid"] }
|
|
signature = "3.0.0-rc.10"
|
|
subtle = "2"
|
|
uuid = { version = "1.2", features = ["v4"] }
|
|
x25519-dalek = "3.0.0-pre.6"
|
|
x509-cert.workspace = true
|
|
zeroize = "1"
|
|
|
|
[dev-dependencies]
|
|
env_logger = "0.11"
|
|
once_cell = "1"
|
|
|
|
[features]
|
|
untested = []
|
|
|
|
[[example]]
|
|
name = "change-mode"
|
|
required-features = ["untested"]
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|