-
- Downloads
Merge pull request #83 from gendx/verbose-feature
Add a --verbose parameter to print all USB packets at the OpenSK level.
No related branches found
No related tags found
Showing
- .github/workflows/cargo_check.yml 8 additions, 2 deletions.github/workflows/cargo_check.yml
- Cargo.toml 4 additions, 3 deletionsCargo.toml
- deploy.py 17 additions, 9 deletionsdeploy.py
- run_desktop_tests.sh 2 additions, 1 deletionrun_desktop_tests.sh
- src/usb_ctap_hid.rs 54 additions, 5 deletionssrc/usb_ctap_hid.rs
... | @@ -18,12 +18,13 @@ arrayref = "0.3.6" | ... | @@ -18,12 +18,13 @@ arrayref = "0.3.6" |
subtle = { version = "2.2", default-features = false, features = ["nightly"] } | subtle = { version = "2.2", default-features = false, features = ["nightly"] } | ||
[features] | [features] | ||
std = ["cbor/std", "crypto/std", "crypto/derive_debug"] | debug_allocations = ["libtock/debug_allocations"] | ||
debug_ctap = ["crypto/derive_debug"] | debug_ctap = ["crypto/derive_debug"] | ||
with_ctap1 = ["crypto/with_ctap1"] | |||
panic_console = ["libtock/panic_console"] | panic_console = ["libtock/panic_console"] | ||
debug_allocations = ["libtock/debug_allocations"] | std = ["cbor/std", "crypto/std", "crypto/derive_debug"] | ||
ram_storage = [] | ram_storage = [] | ||
verbose = ["debug_ctap"] | |||
with_ctap1 = ["crypto/with_ctap1"] | |||
[dev-dependencies] | [dev-dependencies] | ||
elf2tab = "0.4.0" | elf2tab = "0.4.0" | ||
... | ... |
Please register or sign in to comment