yellowstone-grpc/Cargo.toml

48 lines
1.4 KiB
TOML
Raw Normal View History

2022-10-19 07:34:41 -07:00
[package]
name = "solana-geyser-grpc"
version = "0.5.2+solana.1.14.13"
2022-10-19 07:34:41 -07:00
authors = ["Triton One"]
edition = "2021"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
2022-11-06 09:21:43 -08:00
anyhow = "1.0.62"
bincode = "1.3.3"
clap = { version = "3.2.22", features = ["cargo", "derive"] }
futures = "0.3.24"
hyper = { version = "0.14.20", features = ["server"] }
lazy_static = "1.4.0"
log = "0.4.17"
prometheus = "0.13.2"
prost = "0.11.0"
serde = { version = "1.0.145", features = ["derive"] }
serde_json = "1.0.86"
2023-01-30 09:35:54 -08:00
solana-geyser-plugin-interface = "=1.14.13"
solana-logger = "=1.14.13"
solana-sdk = "=1.14.13"
solana-transaction-status = "=1.14.13"
2022-11-06 09:21:43 -08:00
tokio = { version = "1.21.2", features = ["rt-multi-thread", "macros", "time"] }
tokio-stream = "0.1.11"
2022-11-21 07:44:56 -08:00
tonic = { version = "0.8.2", features = ["gzip", "tls", "tls-roots"] }
2022-10-19 07:34:41 -07:00
[build-dependencies]
2022-11-06 09:21:43 -08:00
anyhow = "1.0.62"
cargo-lock = "8.0.2"
git-version = "0.3.5"
2022-10-26 12:54:06 -07:00
protobuf-src = "1.1.0"
2022-11-06 09:21:43 -08:00
tonic-build = "0.8.2"
2022-10-19 07:34:41 -07:00
vergen = "=7.2.1"
2023-01-31 07:48:02 -08:00
[patch.crates-io]
solana-geyser-plugin-interface = { git = "https://github.com/fanatid/solana.git", tag = "v1.14.13-geyser-block-v2" }
solana-logger = { git = "https://github.com/fanatid/solana.git", tag = "v1.14.13-geyser-block-v2" }
solana-sdk = { git = "https://github.com/fanatid/solana.git", tag = "v1.14.13-geyser-block-v2" }
solana-transaction-status = { git = "https://github.com/fanatid/solana.git", tag = "v1.14.13-geyser-block-v2" }
[profile.release]
debug = true
lto = true
codegen-units = 1