-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8ed4af3
commit be9589d
Showing
2 changed files
with
24 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
[package] | ||
name = "ctap-types" | ||
version = "0.1.2" | ||
authors = ["Nicolas Stalder <[email protected]>"] | ||
version = "0.2.0" | ||
authors = ["Nicolas Stalder <[email protected]>", "The Trussed developers"] | ||
edition = "2021" | ||
license = "Apache-2.0 OR MIT" | ||
description = "no_std friendly types for FIDO CTAP" | ||
homepage = "https://github.com/solokeys/ctap-types" | ||
repository = "https://github.com/trussed-dev/ctap-types" | ||
|
||
[dependencies] | ||
bitflags = "1.3" | ||
|
@@ -16,8 +16,8 @@ heapless = { version = "0.7", default-features = false, features = ["serde"] } | |
heapless-bytes = "0.3" | ||
iso7816 = "0.1" | ||
serde = { version = "1", default-features = false, features = ["derive"] } | ||
serde-indexed = "0.1" | ||
serde_bytes = { version = "0.11.12", default-features = false } | ||
serde-indexed = "0.1.1" | ||
serde_bytes = { version = "0.11.14", default-features = false } | ||
serde_repr = "0.1" | ||
|
||
[features] | ||
|
@@ -26,8 +26,9 @@ get-info-full = [] | |
# enables support for implementing the large-blobs extension, see src/sizes.rs | ||
large-blobs = [] | ||
|
||
log-all = ["cbor-smol/log-all"] | ||
log-all = [] | ||
log-none = [] | ||
|
||
[patch.crates-io] | ||
serde-indexed = { git = "https://github.com/trussed-dev/serde-indexed.git", rev = "d95cbe064ef0bfd0ce2d01582110e29fbc22afbd" } | ||
log-info = [] | ||
log-debug = [] | ||
log-warn = [] | ||
log-error = [] |