diff --git a/Cargo.lock b/Cargo.lock index a653bbe74c..b35fd7d074 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -9029,6 +9029,7 @@ dependencies = [ "der 0.7.8", "deranged", "digest", + "displaydoc", "ecdsa 0.16.9", "either", "elliptic-curve 0.13.8", @@ -9075,6 +9076,7 @@ dependencies = [ "prost 0.13.5", "quote", "rand 0.9.1", + "rcgen", "regex", "regex-automata 0.4.9", "regex-syntax 0.8.5", diff --git a/workspace_hack/Cargo.toml b/workspace_hack/Cargo.toml index f5984d3ac3..bfc0f4899d 100644 --- a/workspace_hack/Cargo.toml +++ b/workspace_hack/Cargo.toml @@ -75,6 +75,7 @@ p256 = { version = "0.13", features = ["jwk"] } parquet = { version = "53", default-features = false, features = ["zstd"] } prost = { version = "0.13", features = ["no-recursion-limit", "prost-derive"] } rand = { version = "0.9" } +rcgen = { version = "0.13", features = ["aws_lc_rs"] } regex = { version = "1" } regex-automata = { version = "0.4", default-features = false, features = ["dfa-onepass", "hybrid", "meta", "nfa-backtrack", "perf-inline", "perf-literal", "unicode"] } regex-syntax = { version = "0.8" } @@ -123,6 +124,7 @@ cc = { version = "1", default-features = false, features = ["parallel"] } chrono = { version = "0.4", default-features = false, features = ["clock", "serde", "wasmbind"] } clap = { version = "4", features = ["derive", "env", "string"] } clap_builder = { version = "4", default-features = false, features = ["color", "env", "help", "std", "string", "suggestions", "usage"] } +displaydoc = { version = "0.2" } either = { version = "1" } getrandom = { version = "0.2", default-features = false, features = ["std"] } half = { version = "2", default-features = false, features = ["num-traits"] }