46 lines
956 B
TOML
46 lines
956 B
TOML
|
[package]
|
||
|
name = "service-mango-crank"
|
||
|
version = "0.1.0"
|
||
|
authors = ["Maximilian Schneider <max@mango.markets>"]
|
||
|
license = "AGPL-3.0-or-later"
|
||
|
edition = "2018"
|
||
|
|
||
|
[dependencies]
|
||
|
mango-feeds-lib = { path = "../../lib/mango-feeds-lib" }
|
||
|
mango-feeds-connector = { workspace = true }
|
||
|
|
||
|
|
||
|
solana-client = { workspace = true }
|
||
|
solana-logger = { workspace = true }
|
||
|
solana-sdk = { workspace = true }
|
||
|
|
||
|
anchor-lang = { workspace = true }
|
||
|
anchor-client = { workspace = true }
|
||
|
|
||
|
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-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"
|
||
|
|
||
|
tokio = { version = "1", features = ["full"] }
|
||
|
tokio-tungstenite = "0.17"
|
||
|
|
||
|
|