Set bumpalo version for crypto library (#533)

This commit is contained in:
kaczmarczyck
2022-08-23 11:08:07 +02:00
parent f2496a8e6d
commit b396fc0f36

View File

@@ -23,6 +23,11 @@ serde = { version = "1.0", optional = true, features = ["derive"] }
serde_json = { version = "1.0", optional = true }
regex = { version = "1", optional = true }
# We explicitly lock the version of those transitive dependencies because their
# Cargo.toml don't parse with the nightly compiler used by Tock. Remove this
# whole block once CTAP is a library.
bumpalo = "=3.8.0" # transitive dependency of ring
[features]
std = ["cbor/std", "hex", "rand", "ring", "untrusted", "serde", "serde_json", "regex"]
derive_debug = []