solana-accountsdb-connector/connector-lib/Cargo.toml

47 lines
1.1 KiB
TOML
Raw Normal View History

2021-11-01 02:34:25 -07:00
[package]
name = "solana-accountsdb-connector-lib"
version = "0.1.0"
authors = ["Christian Kamm <ckamm@delightful-solutions.de>"]
edition = "2018"
[dependencies]
jsonrpc-core = "18.0.0"
jsonrpc-derive = "18.0.0"
jsonrpc-http-server = "18.0.0"
jsonrpc-core-client = { version = "18.0.0", features = ["ws", "http"] }
solana-rpc = "=1.8.2"
solana-client = "=1.8.2"
solana-account-decoder = "1.8.2"
2021-11-02 04:54:39 -07:00
solana-sdk = "=1.8.2"
solana-logger = "=1.8.2"
2021-11-01 02:34:25 -07:00
hyper = { version = "0.14", features = ["client", "http1"] }
hyper-tls = { version = "0.5" }
tokio = { version = "1", features = ["full"] }
tokio-postgres = "0.7.4"
tokio-stream = "0.1"
postgres_query = { git = "https://github.com/nolanderc/rust-postgres-query", rev = "b4422051c8a31fbba4a35f88004c1cefb1878dd5" }
2021-11-02 05:22:13 -07:00
serde = "1.0.130"
serde_derive = "1.0.130"
serde_json = "1.0.68"
2021-11-01 02:34:25 -07:00
tonic = "0.6"
fixed = { version = "=1.9.0", features = ["serde"] }
bs58 = "0.3.1"
futures = "0.3.17"
log = "0.4"
prost = "0.9"
futures-core = "0.3"
futures-util = "0.3"
rand = "0.7"
anyhow = "1.0"
2021-11-03 09:22:52 -07:00
async-stream = "0.2"
async-channel = "1.6"
2021-11-03 09:22:52 -07:00
async-trait = "0.1"
2021-11-01 02:34:25 -07:00
[build-dependencies]
tonic-build = "0.6"