26 lines
968 B
TOML
26 lines
968 B
TOML
[package]
|
|
name = "solana-accountsdb-connector-mango"
|
|
version = "0.1.0"
|
|
authors = ["Christian Kamm <ckamm@delightful-solutions.de>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
solana-accountsdb-connector-lib = { path = "../lib" }
|
|
solana-logger = "=1.8.2"
|
|
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" }
|
|
bytes = "1.0"
|
|
|
|
# The v3.2 branch currently has a conflicting syn version dependency, use a fixed version
|
|
mango = { git = "https://github.com/ckamm/mango-v3", rev = "2e1e4886544bdb1c5f773a3856305210f622fa94" }
|
|
mango-common = { git = "https://github.com/ckamm/mango-v3", rev = "2e1e4886544bdb1c5f773a3856305210f622fa94" }
|