add rand dep

This commit is contained in:
GroovieGermanikus 2024-05-08 07:14:29 +02:00
parent be0372f94c
commit 5291ad1aca
No known key found for this signature in database
GPG Key ID: 5B6EB831A5CD2015
2 changed files with 4 additions and 0 deletions

2
Cargo.lock generated
View File

@ -5217,6 +5217,7 @@ dependencies = [
"base64 0.21.7", "base64 0.21.7",
"bincode", "bincode",
"bs58", "bs58",
"bytes",
"cargo-lock", "cargo-lock",
"clap", "clap",
"crossbeam-channel", "crossbeam-channel",
@ -5227,6 +5228,7 @@ dependencies = [
"lazy_static", "lazy_static",
"log", "log",
"prometheus", "prometheus",
"rand 0.7.3",
"serde", "serde",
"serde_json", "serde_json",
"solana-geyser-plugin-interface", "solana-geyser-plugin-interface",

View File

@ -41,6 +41,8 @@ tokio-stream = { workspace = true }
tonic = { workspace = true, features = ["gzip", "tls", "tls-roots"] } tonic = { workspace = true, features = ["gzip", "tls", "tls-roots"] }
tonic-health = { workspace = true } tonic-health = { workspace = true }
yellowstone-grpc-proto = { workspace = true } yellowstone-grpc-proto = { workspace = true }
rand = { version = "0.7.3", features = [] }
bytes = "1.5.0"
[build-dependencies] [build-dependencies]
anyhow = { workspace = true } anyhow = { workspace = true }