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
274 changes: 250 additions & 24 deletions Cargo.lock

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -368,6 +368,7 @@ assert_matches = "1.5.0"
assert_cmd = "2.0.17"
async-bb8-diesel = "0.2"
async-trait = "0.1.89"
attest-mock = { git = "https://github.com/oxidecomputer/dice-util", rev = "10952e8d9599b735b85d480af3560a11700e5b64" }
atomicwrites = "0.4.4"
authz-macros = { path = "nexus/authz-macros" }
backoff = { version = "0.4.0", features = [ "tokio" ] }
Expand Down Expand Up @@ -722,7 +723,8 @@ slog-term = "2.9.1"
smf = "0.2"
socket2 = { version = "0.5", features = ["all"] }
sp-sim = { path = "sp-sim" }
sprockets-tls = { git = "https://github.com/oxidecomputer/sprockets.git", rev = "7da1f0b5dcd3d631da18b43ba78a84b1a2b425ee" }
sprockets-tls = { git = "https://github.com/oxidecomputer/sprockets.git", rev = "dea3bbfac7d9d3c45f088898fcd05ee5d2ec2210" }
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This just pulls in a couple of helpers.

sprockets-tls-test-utils = { git = "https://github.com/oxidecomputer/sprockets.git", rev = "dea3bbfac7d9d3c45f088898fcd05ee5d2ec2210" }
sqlformat = "0.3.5"
sqlparser = { version = "0.45.0", features = [ "visitor" ] }
static_assertions = "1.1.0"
Expand Down
1 change: 1 addition & 0 deletions sled-agent/src/bootstrap/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@
pub const BOOTSTRAP_AGENT_HTTP_PORT: u16 = 80;
pub const BOOTSTRAP_AGENT_RACK_INIT_PORT: u16 = 12346;
pub const BOOTSTORE_PORT: u16 = 12347;
pub const TRUST_QUORUM_PORT: u16 = 12349;
6 changes: 6 additions & 0 deletions trust-quorum/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,13 @@ workspace = true
anyhow.workspace = true
bcs.workspace = true
bootstore.workspace = true
bytes.workspace = true
camino.workspace = true
chacha20poly1305.workspace = true
ciborium.workspace = true
daft.workspace = true
derive_more.workspace = true
futures.workspace = true
gfss.workspace = true
hex.workspace = true
hkdf.workspace = true
Expand All @@ -28,6 +31,7 @@ sha3.workspace = true
sled-agent-types.workspace = true
slog.workspace = true
slog-error-chain.workspace = true
sprockets-tls.workspace = true
static_assertions.workspace = true
subtle.workspace = true
thiserror.workspace = true
Expand All @@ -38,12 +42,14 @@ omicron-workspace-hack.workspace = true

[dev-dependencies]
assert_matches.workspace = true
attest-mock.workspace = true
dropshot.workspace = true
omicron-test-utils.workspace = true
proptest.workspace = true
serde_json.workspace = true
test-strategy.workspace = true
trust-quorum-test-utils.workspace = true
sprockets-tls-test-utils.workspace = true

[features]
# Impl `PartialEq` and `Eq` for types implementing `subtle::ConstantTimeEq` when
Expand Down
Loading
Loading