mango-feeds/Cargo.toml

57 lines
1.1 KiB
TOML
Raw Normal View History

2021-11-01 02:34:25 -07:00
[workspace]
members = [
"connector",
2021-11-01 02:34:25 -07:00
]
2024-04-08 03:19:47 -07:00
resolver = "2"
2021-11-01 02:34:25 -07:00
[patch.crates-io]
# for gzip encoded responses
jsonrpc-core-client = { git = "https://github.com/ckamm/jsonrpc.git", branch = "ckamm/http-with-gzip-default-v18.0.0" }
2023-08-29 04:52:38 -07:00
[workspace.dependencies]
solana-rpc = "1.17"
solana-client = "1.17"
solana-account-decoder = "1.17"
solana-sdk = "1.17"
solana-logger = "1.17"
yellowstone-grpc-client = "1.13.0"
yellowstone-grpc-proto = "1.13.0"
2023-08-29 04:52:38 -07:00
jsonrpc-core = "18.0.0"
jsonrpc-core-client = { version = "18.0.0", features = ["ws", "http"] }
bs58 = "0.5"
base64 = "0.21.0"
log = "0.4"
rand = "0.7"
anyhow = "1.0"
toml = "0.5"
bytes = "1.0"
itertools = "0.10.5"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
futures = "0.3.17"
futures-core = "0.3"
futures-channel = "0.3"
futures-util = "0.3"
ws = "^0.9.2"
async-channel = "1.6"
async-trait = "0.1"
bytemuck = "1.7.2"
jemallocator = "0.3.2"
chrono = "0.4.23"
2023-10-03 23:58:01 -07:00
clap = { version = "3.1.8", features = ["derive", "env"] }
2023-08-29 04:52:38 -07:00
tokio = { version = "1", features = ["full"] }
tokio-tungstenite = "0.17"
tokio-stream = { version = "0.1.9"}
2023-08-29 04:52:38 -07:00
rustls = "0.20.8"
2023-10-03 23:58:01 -07:00
warp = "0.3"
2023-08-29 04:52:38 -07:00