Fix bumpalo issue
This commit is contained in:
@@ -11,9 +11,6 @@ cargo-fuzz = true
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
libfuzzer-sys = { version = "0.3" }
|
libfuzzer-sys = { version = "0.3" }
|
||||||
fuzz_helper = { path = "fuzz_helper" }
|
fuzz_helper = { path = "fuzz_helper" }
|
||||||
# We import to explicitly lock the version.
|
|
||||||
# Remove this dependency once CTAP is a library.
|
|
||||||
bumpalo = "=3.8.0"
|
|
||||||
|
|
||||||
# Prevent this from interfering with workspaces
|
# Prevent this from interfering with workspaces
|
||||||
[workspace]
|
[workspace]
|
||||||
|
|||||||
@@ -21,6 +21,11 @@ serde = { version = "1.0", optional = true, features = ["derive"] }
|
|||||||
serde_json = { version = "=1.0.69", optional = true }
|
serde_json = { version = "=1.0.69", optional = true }
|
||||||
regex = { version = "1", 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]
|
[features]
|
||||||
std = ["hex", "ring", "rng256/std", "untrusted", "serde", "serde_json", "regex"]
|
std = ["hex", "ring", "rng256/std", "untrusted", "serde", "serde_json", "regex"]
|
||||||
with_ctap1 = []
|
with_ctap1 = []
|
||||||
|
|||||||
Reference in New Issue
Block a user