61 lines
1.7 KiB
TOML
61 lines
1.7 KiB
TOML
[package]
|
|
name = "service-mango-health"
|
|
version = "0.1.0"
|
|
authors = ["Christian Kamm <mail@ckamm.de>", "Maximilian Schneider <max@mango.markets>", "Serge Farny <serge.farny@gmail.com>"]
|
|
edition = "2018"
|
|
license = "AGPL-3.0-or-later"
|
|
|
|
[dependencies]
|
|
mango-feeds-lib = { path = "../../lib/mango-feeds-lib" }
|
|
mango-feeds-connector = { workspace = true }
|
|
services-mango-lib = { path = "../../lib/services-mango-lib" }
|
|
|
|
solana-client = { workspace = true }
|
|
solana-logger = { workspace = true }
|
|
solana-sdk = { workspace = true }
|
|
|
|
anchor-lang = { workspace = true }
|
|
anchor-client = { workspace = true }
|
|
|
|
fixed = { workspace = true, features = ["serde", "borsh"] }
|
|
|
|
mango-v4 = { path = "../../programs/mango-v4", features = ["client"] }
|
|
mango-v4-client = { path = "../../lib/client" }
|
|
|
|
|
|
serum_dex = { workspace = true }
|
|
|
|
bs58 = "0.3.1"
|
|
log = "0.4"
|
|
anyhow = "1.0"
|
|
toml = "0.5"
|
|
serde = "1.0.130"
|
|
serde_derive = "1.0.130"
|
|
serde_json = "1.0.68"
|
|
futures = "0.3.17"
|
|
futures-core = "0.3"
|
|
futures-channel = "0.3"
|
|
futures-util = "0.3"
|
|
ws = "^0.9.2"
|
|
async-channel = "1.6"
|
|
async-trait = "0.1"
|
|
bytemuck = "^1.7.2"
|
|
itertools = "0.10.3"
|
|
jemallocator = "0.3.2"
|
|
chrono = "0.4.23"
|
|
base64 = "0.21"
|
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
tokio-tungstenite = "0.17"
|
|
|
|
tokio-postgres = { version = "0.7", features = ["with-chrono-0_4"] }
|
|
tokio-postgres-rustls = "0.9.0"
|
|
postgres-types = { version = "0.2", features = ["array-impls", "derive", "with-chrono-0_4"] }
|
|
postgres-native-tls = "0.5"
|
|
native-tls = "0.2"
|
|
rustls = "0.20.8"
|
|
# postgres_query hasn't updated its crate in a while
|
|
postgres_query = { git = "https://github.com/nolanderc/rust-postgres-query", rev = "b4422051c8a31fbba4a35f88004c1cefb1878dd5" }
|
|
tracing = { version = "0.1", features = ["log"] }
|
|
|