diff --git a/Cargo.lock b/Cargo.lock index 03d547a359..43077f1b05 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -9103,6 +9103,7 @@ dependencies = [ "clap_builder", "const-oid", "criterion", + "crossbeam-epoch", "crypto-bigint 0.5.5", "der 0.7.8", "deranged", @@ -9147,6 +9148,7 @@ dependencies = [ "num-traits", "p256 0.13.2", "parquet", + "portable-atomic", "prettyplease", "proc-macro2", "prost 0.13.5", diff --git a/workspace_hack/Cargo.toml b/workspace_hack/Cargo.toml index 105e4afb87..4900f9dd35 100644 --- a/workspace_hack/Cargo.toml +++ b/workspace_hack/Cargo.toml @@ -29,6 +29,7 @@ clap = { version = "4", features = ["derive", "env", "string"] } clap_builder = { version = "4", default-features = false, features = ["color", "env", "help", "std", "string", "suggestions", "usage"] } const-oid = { version = "0.9", default-features = false, features = ["db", "std"] } criterion = { version = "0.5", features = ["html_reports"] } +crossbeam-epoch = { version = "0.9" } crypto-bigint = { version = "0.5", features = ["generic-array", "zeroize"] } der = { version = "0.7", default-features = false, features = ["derive", "flagset", "oid", "pem", "std"] } deranged = { version = "0.3", default-features = false, features = ["powerfmt", "serde", "std"] } @@ -73,6 +74,7 @@ num-rational = { version = "0.4", default-features = false, features = ["num-big num-traits = { version = "0.2", features = ["i128", "libm"] } p256 = { version = "0.13", features = ["jwk"] } parquet = { version = "53", default-features = false, features = ["zstd"] } +portable-atomic = { version = "1", features = ["require-cas"] } prost = { version = "0.13", features = ["no-recursion-limit", "prost-derive"] } rand = { version = "0.9" } regex = { version = "1" }