Skip to content

Trust-Quorum: Messages, Config, Crypto #7859

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 25 commits into from
Apr 21, 2025
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
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
152 changes: 137 additions & 15 deletions Cargo.lock

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

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ members = [
"sled-storage",
"sp-sim",
"test-utils",
"trust-quorum",
"typed-rng",
"update-common",
"update-engine",
Expand Down Expand Up @@ -258,6 +259,7 @@ default-members = [
"sled-hardware/types",
"sled-storage",
"sp-sim",
"trust-quorum",
"test-utils",
"typed-rng",
"update-common",
Expand Down
30 changes: 30 additions & 0 deletions trust-quorum/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
[package]
name = "trust-quorum"
version = "0.1.0"
edition = "2021"
license = "MPL-2.0"

[dependencies]
bcs.workspace = true
bootstore.workspace = true
camino.workspace = true
chacha20poly1305.workspace = true
derive_more.workspace = true
hex.workspace = true
hkdf.workspace = true
rand = { workspace = true, features = ["getrandom"] }
secrecy.workspace = true
serde.workspace = true
serde_with.workspace = true
sha3.workspace = true
slog.workspace = true
thiserror.workspace = true
tokio.workspace = true
uuid.workspace = true
omicron-uuid-kinds.workspace = true
vsss-rs = { version = "5.1.0", features = ["std"] }
zeroize.workspace = true

[dev-dependencies]
proptest.workspace = true
test-strategy.workspace = true
Loading
Loading