Skip to content

Commit

Permalink
fixup! Add basic config mechanism for fido2
Browse files Browse the repository at this point in the history
apps: Make admin-app a required dependency
  • Loading branch information
robin-nitrokey committed Sep 27, 2023
1 parent 47ba14c commit 25303c4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/apps/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ trussed-rsa-alloc = { version = "0.1.0", optional = true }
trussed-staging = { version = "0.1.0", features = ["wrap-key-to-file", "chunked", "encrypted-chunked"], optional = true }

# apps
admin-app = { version = "0.1.0", optional = true }
admin-app = "0.1.0"
fido-authenticator = { version = "0.1.1", features = ["dispatch"], optional = true }
ndef-app = { path = "../ndef-app", optional = true }
webcrypt = { version = "0.7.0", optional = true }
Expand All @@ -32,7 +32,7 @@ cbor-smol = "0.4"
hex = "0.4"

[features]
default = ["admin-app", "fido-authenticator", "ndef-app", "secrets-app", "opcard", "trussed/clients-4"]
default = ["fido-authenticator", "ndef-app", "secrets-app", "opcard", "trussed/clients-4"]
test = ["piv-authenticator", "webcrypt", "trussed/clients-6"]
provisioner = ["provisioner-app", "trussed/clients-5"]

Expand All @@ -48,7 +48,7 @@ backend-auth = ["trussed-auth"]
backend-rsa = ["trussed-rsa-alloc"]
backend-staging = ["trussed-staging"]

log-all = ["admin-app?/log-all", "fido-authenticator?/log-all", "secrets-app?/log-all", "webcrypt?/log-all", "opcard?/log-all", "provisioner-app?/log-all"]
log-all = ["admin-app/log-all", "fido-authenticator?/log-all", "secrets-app?/log-all", "webcrypt?/log-all", "opcard?/log-all", "provisioner-app?/log-all"]

trussed-usbip-ccid = ["trussed-usbip/ccid"]

Expand Down

0 comments on commit 25303c4

Please sign in to comment.