solana-accountsdb-connector/lib/Cargo.toml

66 lines
1.5 KiB
TOML
Raw Normal View History

2021-11-01 02:34:25 -07:00
[package]
name = "solana-geyser-connector-lib"
2021-11-01 02:34:25 -07:00
version = "0.1.0"
2022-01-06 23:21:00 -08:00
authors = ["Christian Kamm <mail@ckamm.de>"]
edition = "2021"
2021-11-01 02:34:25 -07:00
[lib]
2021-11-01 02:34:25 -07:00
[dependencies]
jsonrpc-core = "18.0.0"
jsonrpc-core-client = { version = "18.0.0", features = ["ws", "http"] }
2022-12-16 02:58:04 -08:00
solana-rpc = "~1.14.9"
solana-client = "~1.14.9"
solana-account-decoder = "~1.14.9"
solana-sdk = "~1.14.9"
2021-11-01 02:34:25 -07:00
mango-v4 = { git = "https://github.com/blockworks-foundation/mango-v4", branch = "dev" }
2022-03-28 10:58:14 -07:00
arrayref = "*"
bytemuck = "*"
fixed = { version = "*", features = ["serde"] }
2021-11-01 02:34:25 -07:00
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
tokio-postgres = "0.7"
2021-11-04 01:57:55 -07:00
postgres-types = { version = "0.2", features = ["array-impls", "derive"] }
postgres-native-tls = "0.5"
native-tls = "0.2"
2021-11-04 01:57:55 -07:00
# postgres_query hasn't updated its crate in a while
2021-11-01 02:34:25 -07:00
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"
2022-08-25 03:51:38 -07:00
tonic = { version = "0.6", features = ["tls", "compression"] }
prost = "0.9"
2022-03-28 10:58:14 -07:00
bs58 = "*"
base64 = "*"
2021-11-01 02:34:25 -07:00
log = "0.4"
rand = "0.7"
anyhow = "1.0"
bytes = "1.0"
itertools = "0.10.5"
futures = "0.3.17"
futures-core = "0.3"
futures-util = "0.3"
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-04 01:57:55 -07:00
2022-10-07 03:44:53 -07:00
warp = "0.3"
2022-11-16 06:57:50 -08:00
anchor-lang = "0.25.0"
serum_dex = { git = "https://github.com/jup-ag/openbook-program", branch = "feat/expose-things" }
2022-08-25 03:51:38 -07:00
2021-11-01 02:34:25 -07:00
[build-dependencies]
2022-08-25 03:51:38 -07:00
tonic-build = { version = "0.6", features = ["compression"] }
2021-11-01 02:34:25 -07:00