Files

86 lines
3.0 KiB
TOML
Raw Permalink Normal View History

2020-01-19 04:37:03 +01:00
[package]
name = "fido-authenticator"
2026-06-01 17:21:08 +02:00
version = "0.4.0-rc.3"
2025-08-25 09:08:53 +02:00
authors = ["The Trussed developers", "Nicolas Stalder <n@stalder.io>", "Nitrokey GmbH"]
edition = "2021"
license = "Apache-2.0 OR MIT"
2025-08-25 09:08:53 +02:00
repository = "https://github.com/trussed-dev/fido-authenticator"
documentation = "https://docs.rs/fido-authenticator"
2022-03-17 03:42:44 +01:00
description = "FIDO authenticator Trussed app"
2020-01-19 04:37:03 +01:00
[dependencies]
2025-09-08 17:22:12 +02:00
apdu-app = { version = "0.2", optional = true }
2025-08-25 09:08:53 +02:00
cbor-smol = "0.5"
2025-09-08 17:22:12 +02:00
cosey = "0.4"
ctap-types = { version = "=0.6.0-rc.4", features = ["get-info-full", "large-blobs", "third-party-payment"] }
2025-09-08 17:22:12 +02:00
ctaphid-app = { version = "0.2", optional = true }
2025-08-25 09:08:53 +02:00
delog = "0.1"
2025-09-08 17:22:12 +02:00
heapless = "0.9"
heapless-bytes = { version = "0.5", features = ["heapless-0.9"]}
iso7816 = { version = "0.2", optional = true }
2024-10-14 16:02:52 +02:00
littlefs2-core = "0.1"
2020-03-06 21:13:04 +01:00
serde = { version = "1.0", default-features = false }
2024-06-07 10:54:20 +02:00
serde_bytes = { version = "0.11.14", default-features = false }
2025-08-25 09:08:53 +02:00
serde-indexed = "0.1"
2023-11-23 00:34:29 +01:00
sha2 = { version = "0.10", default-features = false }
2025-09-08 17:22:12 +02:00
trussed-chunked = { version = "0.3", optional = true }
trussed-core = { version = "0.2.2", features = ["aes256-cbc", "certificate-client", "chacha8-poly1305", "crypto-client", "ed255", "filesystem-client", "hmac-sha256", "management-client", "p256", "sha256", "ui-client"] }
2025-09-08 17:22:12 +02:00
trussed-fs-info = "0.3"
trussed-hkdf = "0.4"
2020-03-28 22:59:04 +01:00
[features]
2025-08-25 09:08:53 +02:00
dispatch = ["apdu-dispatch", "ctaphid-dispatch", "dep:iso7816"]
2024-10-17 23:13:59 +02:00
apdu-dispatch = ["dep:apdu-app"]
ctaphid-dispatch = ["dep:ctaphid-app"]
2021-03-26 01:32:27 -07:00
disable-reset-time-window = []
credential-id-format-v2 = ["trussed-core/aes256-gcm"]
2023-11-23 00:34:29 +01:00
# enables support for a large-blob array longer than 1024 bytes
2025-08-25 09:08:53 +02:00
chunked = ["dep:trussed-chunked"]
2023-11-23 00:34:29 +01:00
log-all = []
log-none = []
2025-01-26 22:13:42 +01:00
log-trace = []
log-info = []
log-debug = []
log-warn = []
2021-01-06 22:08:22 +01:00
log-error = []
[dev-dependencies]
2025-09-08 17:22:12 +02:00
admin-app = { git = "https://github.com/Nitrokey/admin-app.git", tag = "v0.1.0-nitrokey.21", features = ["migration-tests"] }
aes = "0.8.4"
cbc = { version = "0.1.2", features = ["alloc"] }
2025-08-25 09:08:53 +02:00
ciborium = "0.2.2"
2024-06-21 20:28:25 +02:00
ciborium-io = "0.2.2"
cipher = "0.4.4"
2024-03-08 23:03:44 +01:00
ctaphid = { version = "0.3.1", default-features = false }
2025-09-08 17:22:12 +02:00
ctaphid-dispatch = "0.4"
2024-03-08 23:03:44 +01:00
delog = { version = "0.1.6", features = ["std-log"] }
2025-08-25 09:08:53 +02:00
env_logger = "0.11"
hex-literal = "0.4.1"
hmac = "0.12.1"
2025-08-25 09:08:53 +02:00
interchange = "0.3"
itertools = "0.14"
2025-09-08 17:22:12 +02:00
littlefs2 = "0.7"
2024-03-08 23:03:44 +01:00
log = "0.4.21"
p256 = { version = "0.13.2", features = ["ecdh"] }
rand = "0.8.4"
2024-12-02 12:01:06 +01:00
rand_chacha = "0.3"
sha2 = "0.10"
serde_test = "1.0.176"
trussed = { git = "https://github.com/trussed-dev/trussed.git", rev = "ad577412599156ac98f29ee969e76537e506f2bc", features = ["virt"] }
2025-09-08 17:22:12 +02:00
trussed-staging = { git = "https://github.com/trussed-dev/trussed-staging.git", tag = "v0.4.0", features = ["chunked", "hkdf", "virt", "fs-info"] }
trussed-usbip = { git = "https://github.com/trussed-dev/pc-usbip-runner.git", rev = "017921df0930707c4af68882ccb1f8b3f1bbf7c5", default-features = false, features = ["ctaphid"] }
usbd-ctaphid = "0.4"
2025-08-25 09:08:53 +02:00
x509-parser = "0.16"
2022-03-17 02:17:51 +01:00
[package.metadata.docs.rs]
2025-08-25 09:08:53 +02:00
features = ["chunked", "dispatch"]
2023-02-08 13:20:11 +01:00
[patch.crates-io]
trussed = { git = "https://github.com/trussed-dev/trussed.git", rev = "ad577412599156ac98f29ee969e76537e506f2bc" }
2025-02-19 12:03:35 +01:00
[profile.test]
opt-level = 2