solana-accountsdb-connector/lib/Cargo.toml

59 lines
1.2 KiB
TOML

[package]
name = "solana-geyser-connector-lib"
version = "0.1.0"
authors = ["Christian Kamm <mail@ckamm.de>"]
edition = "2021"
[lib]
[dependencies]
jsonrpc-core = "18.0.0"
jsonrpc-core-client = { version = "18.0.0", features = ["ws", "http"] }
solana-rpc = "=1.9.13"
solana-client = "=1.9.13"
solana-account-decoder = "=1.9.13"
solana-sdk = "=1.9.13"
mango = { git = "https://github.com/blockworks-foundation/mango-v3" }
arrayref = "*"
bytemuck = "*"
fixed = { version = "*", features = ["serde"] }
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
tokio-postgres = "0.7"
postgres-types = { version = "0.2", features = ["array-impls", "derive"] }
postgres-native-tls = "0.5"
native-tls = "0.2"
# postgres_query hasn't updated its crate in a while
postgres_query = { git = "https://github.com/nolanderc/rust-postgres-query", rev = "b4422051c8a31fbba4a35f88004c1cefb1878dd5" }
serde = "1.0.130"
serde_derive = "1.0.130"
serde_json = "1.0.68"
tonic = { version = "0.6", features = ["tls"] }
prost = "0.9"
bs58 = "*"
base64 = "*"
log = "0.4"
rand = "0.7"
anyhow = "1.0"
bytes = "1.0"
futures = "0.3.17"
futures-core = "0.3"
futures-util = "0.3"
async-stream = "0.2"
async-channel = "1.6"
async-trait = "0.1"
[build-dependencies]
tonic-build = "0.6"