-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathCargo.toml
23 lines (20 loc) · 806 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "solana-geyser-connector-mango"
version = "0.1.0"
authors = ["Christian Kamm <[email protected]>"]
edition = "2018"
[dependencies]
solana-geyser-connector-lib = { path = "../lib" }
solana-logger = "=1.9.13"
log = "0.4"
anyhow = "1.0"
toml = "0.5"
async-trait = "0.1"
fixed = { version = "1.9.0", features = ["serde"] }
bs58 = "0.3.1"
tokio = { version = "1", features = ["full"] }
tokio-postgres = "0.7.4"
postgres-types = { version = "0.2", features = ["array-impls", "derive"] }
postgres_query = { git = "https://github.com/nolanderc/rust-postgres-query", rev = "b4422051c8a31fbba4a35f88004c1cefb1878dd5" }
mango = { git = "https://github.com/blockworks-foundation/mango-v3", branch = "main" }
mango-common = { git = "https://github.com/blockworks-foundation/mango-v3", branch = "main" }