diff --git a/Cargo.lock b/Cargo.lock index 6ad0a9c..e7f2d8b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1333,6 +1333,7 @@ dependencies = [ "clap", "clap-num", "ctaphid-dispatch", + "delog", "fido-authenticator", "interchange", "log", diff --git a/Cargo.toml b/Cargo.toml index 22aef3a..25fa1ae 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,13 +7,13 @@ edition = "2021" [dependencies] interchange = "0.2.0" log = { version = "0.4.14", default-features = false } -trussed = { version = "0.1", features = ["virt"] } +trussed = { version = "0.1", features = ["log-all", "virt"] } usb-device = { version = "0.2.7", default-features = false } usbip-device = "0.1.5" # ctaphid -ctaphid-dispatch = { version = "0.1", optional = true } -usbd-ctaphid = { git = "https://github.com/Nitrokey/nitrokey-3-firmware", optional = true } +ctaphid-dispatch = { version = "0.1", features = ["log-all"], optional = true } +usbd-ctaphid = { git = "https://github.com/Nitrokey/nitrokey-3-firmware", features = ["log-all"], optional = true } [dev-dependencies] clap = { version = "3.0.0", features = ["derive"] }