Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 26 additions & 21 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ omicron-ddm-admin-client = { path = "clients/ddm-admin-client" }
datatest-stable = "0.3.2"
db-macros = { path = "nexus/db-macros" }
debug-ignore = "1.0.5"
derive_more = "0.99.20"
derive_more = "2.1.1"
derive-where = "1.5.0"
dev-tools-common = { path = "dev-tools/common" }
# Having the i-implement-... feature here makes diesel go away from the workspace-hack
Expand Down
11 changes: 9 additions & 2 deletions workspace-hack/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ curve25519-dalek = { version = "4.1.3", features = ["digest", "legacy_compatibil
daft = { version = "0.1.4", features = ["derive", "newtype-uuid1", "oxnet01", "uuid1"] }
data-encoding = { version = "2.9.0" }
der = { version = "0.7.10", default-features = false, features = ["derive", "flagset", "oid", "pem", "std"] }
derive_more = { version = "2.1.1", features = ["is_variant"] }
digest = { version = "0.10.7", features = ["mac", "oid", "std"] }
ecdsa = { version = "0.16.9", features = ["pem", "signing", "std", "verifying"] }
ed25519-dalek = { version = "2.1.1", features = ["digest", "pem", "rand_core"] }
Expand Down Expand Up @@ -76,6 +77,7 @@ indexmap = { version = "2.12.1", features = ["serde"] }
inout = { version = "0.1.3", default-features = false, features = ["std"] }
ipnet = { version = "2.11.0", features = ["serde"] }
ipnetwork = { version = "0.21.1", features = ["schemars", "serde"] }
itertools-594e8ee84c453af0 = { package = "itertools", version = "0.13.0" }
lalrpop-util = { version = "0.19.12" }
lazy_static = { version = "1.5.0", default-features = false, features = ["spin_no_std"] }
libc = { version = "0.2.174", features = ["extra_traits"] }
Expand Down Expand Up @@ -184,6 +186,8 @@ curve25519-dalek = { version = "4.1.3", features = ["digest", "legacy_compatibil
daft = { version = "0.1.4", features = ["derive", "newtype-uuid1", "oxnet01", "uuid1"] }
data-encoding = { version = "2.9.0" }
der = { version = "0.7.10", default-features = false, features = ["derive", "flagset", "oid", "pem", "std"] }
derive_more = { version = "2.1.1", features = ["is_variant"] }
derive_more-impl = { version = "2.1.1", features = ["is_variant"] }
digest = { version = "0.10.7", features = ["mac", "oid", "std"] }
ecdsa = { version = "0.16.9", features = ["pem", "signing", "std", "verifying"] }
ed25519-dalek = { version = "2.1.1", features = ["digest", "pem", "rand_core"] }
Expand Down Expand Up @@ -216,6 +220,7 @@ indexmap = { version = "2.12.1", features = ["serde"] }
inout = { version = "0.1.3", default-features = false, features = ["std"] }
ipnet = { version = "2.11.0", features = ["serde"] }
ipnetwork = { version = "0.21.1", features = ["schemars", "serde"] }
itertools-594e8ee84c453af0 = { package = "itertools", version = "0.13.0" }
lalrpop-util = { version = "0.19.12" }
lazy_static = { version = "1.5.0", default-features = false, features = ["spin_no_std"] }
libc = { version = "0.2.174", features = ["extra_traits"] }
Expand Down Expand Up @@ -382,7 +387,8 @@ dof-9fbad63c4bcf4a8f = { package = "dof", version = "0.4.0", default-features =
getrandom-468e82937335b1c9 = { package = "getrandom", version = "0.3.4", default-features = false, features = ["std"] }
hyper-rustls = { version = "0.27.7", features = ["http2", "ring", "webpki-tokio"] }
hyper-util = { version = "0.1.19", features = ["full"] }
itertools = { version = "0.10.5" }
itertools-5ef9efb8ec2df382 = { package = "itertools", version = "0.12.1" }
itertools-93f6ce9d446188ac = { package = "itertools", version = "0.10.5" }
miniz_oxide = { version = "0.8.5", default-features = false, features = ["with-alloc"] }
mio = { version = "1.0.2", features = ["net", "os-ext"] }
nom = { version = "7.1.3" }
Expand All @@ -401,7 +407,8 @@ dof-9fbad63c4bcf4a8f = { package = "dof", version = "0.4.0", default-features =
getrandom-468e82937335b1c9 = { package = "getrandom", version = "0.3.4", default-features = false, features = ["std"] }
hyper-rustls = { version = "0.27.7", features = ["http2", "ring", "webpki-tokio"] }
hyper-util = { version = "0.1.19", features = ["full"] }
itertools = { version = "0.10.5" }
itertools-5ef9efb8ec2df382 = { package = "itertools", version = "0.12.1" }
itertools-93f6ce9d446188ac = { package = "itertools", version = "0.10.5" }
miniz_oxide = { version = "0.8.5", default-features = false, features = ["with-alloc"] }
mio = { version = "1.0.2", features = ["net", "os-ext"] }
nom = { version = "7.1.3" }
Expand Down
Loading