-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (52 loc) · 1.67 KB
/
Copy pathCargo.toml
File metadata and controls
59 lines (52 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[package]
name = "ctap-types"
version = "0.6.0-rc.4"
authors = ["Nicolas Stalder <n@stalder.io>", "The Trussed developers"]
edition = "2021"
license = "Apache-2.0 OR MIT"
description = "no_std friendly types for FIDO CTAP"
repository = "https://github.com/trussed-dev/ctap-types"
[dependencies]
arbitrary = { version = "1.3.2", features = ["derive"], optional = true }
bitflags = "1.3"
cbor-smol = { version = "0.5", features = ["heapless-bytes-v0-5"] }
cosey = "0.4.0"
delog = "0.1"
heapless = { version = "0.9", default-features = false, features = ["serde"] }
heapless-bytes = "0.5"
iso7816 = "0.2.0"
serde = { version = "1", default-features = false, features = ["derive"] }
serde-indexed = "0.1.1"
serde_bytes = { version = "0.11.14", default-features = false }
serde_repr = "0.1"
[dev-dependencies]
cbor-smol = "0.5"
ciborium = "0.2"
hex = "0.4"
hex-literal = "0.4.1"
serde_test = "1.0.176"
[features]
std = []
# adds additional serde::{Deserialize, Serialize} implementations required by platforms
platform-serde = []
# implements arbitrary::Arbitrary for requests
arbitrary = ["dep:arbitrary", "std"]
# enables all fields for ctap2::get_info
get-info-full = []
# enables support for implementing the large-blobs extension, see src/sizes.rs
large-blobs = []
# Bumps `MAX_PACKED_SIG_LENGTH`, `MAX_X5C_CERT_LENGTH`, and
# `AUTHENTICATOR_DATA_LENGTH` so packed attestation can carry an
# ML-DSA-44 (CTAP 2.3 alg -50) signature (2420 B) alongside the larger
# COSE_Key (1322 B) inside authData. See `src/sizes.rs`.
mldsa44 = []
third-party-payment = []
log-all = []
log-none = []
log-trace = []
log-info = []
log-debug = []
log-warn = []
log-error = []
[package.metadata.docs.rs]
all-features = true