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
8 changes: 8 additions & 0 deletions Cargo.lock

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

3 changes: 3 additions & 0 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ frozen-abi = [
"solana-vote/frozen-abi",
"solana-vote-program/frozen-abi",
]
shuttle-test = ["dep:shuttle"]

[dependencies]
agave-banking-stage-ingress-types = { workspace = true }
Expand Down Expand Up @@ -75,6 +76,7 @@ min-max-heap = { workspace = true }
num_cpus = { workspace = true }
num_enum = { workspace = true }
qualifier_attr = { workspace = true }
quinn = { workspace = true }
rand = { workspace = true }
rand_chacha = { workspace = true }
rayon = { workspace = true }
Expand All @@ -84,6 +86,7 @@ rustls = { workspace = true }
serde = { workspace = true }
serde_bytes = { workspace = true }
shaq = { workspace = true }
shuttle = { workspace = true, optional = true }
signal-hook = { workspace = true }
slab = { workspace = true }
solana-account = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions core/src/admin_rpc_post_init.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ pub enum KeyUpdaterType {
RpcService,
/// BLS all-to-all streamer key updater
Bls,
/// BLS all-to-all connection cache key updater
BlsConnectionCache,
/// BLS all-to-all QUIC datagram client key updater
BlsDatagramClient,
}

/// Responsible for managing the updaters for identity key change
Expand Down
Loading