31 lines
897 B
TOML
31 lines
897 B
TOML
[package]
|
|
name = "mango-v4-keeper"
|
|
version = "0.3.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "keeper"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
anchor-client = { workspace = true }
|
|
anchor-lang = { workspace = true }
|
|
anchor-spl = { workspace = true }
|
|
anyhow = "1.0"
|
|
clap = { version = "3.1.8", features = ["derive", "env"] }
|
|
dotenv = "0.15.0"
|
|
fixed = { workspace = true, features = ["serde", "borsh"] }
|
|
futures = "0.3.21"
|
|
itertools = "0.10.3"
|
|
mango-v4 = { path = "../../programs/mango-v4", features = ["client"] }
|
|
mango-v4-client = { path = "../../lib/client" }
|
|
pyth-sdk-solana = { workspace = true }
|
|
serum_dex = { workspace = true, features = ["no-entrypoint", "program"] }
|
|
solana-client = { workspace = true }
|
|
solana-sdk = { workspace = true }
|
|
tokio = { version = "1.14.1", features = ["rt-multi-thread", "time", "macros", "sync"] }
|
|
prometheus = "0.13.3"
|
|
warp = "0.3.3"
|
|
lazy_static = "1.4.0"
|
|
tracing = "0.1"
|