32 lines
1.0 KiB
TOML
32 lines
1.0 KiB
TOML
[package]
|
|
name = "mango-v4-keeper"
|
|
version = "0.3.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "keeper"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
anchor-client = { path = "../../3rdparty/anchor/client" }
|
|
anchor-lang = { path = "../../3rdparty/anchor/lang" }
|
|
anchor-spl = { path = "../../3rdparty/anchor/spl" }
|
|
anyhow = "1.0"
|
|
clap = { version = "3.1.8", features = ["derive", "env"] }
|
|
dotenv = "0.15.0"
|
|
env_logger = "0.8.4"
|
|
fixed = { path = "../../3rdparty/fixed", version = "1.11.0", features = ["serde", "borsh"] }
|
|
futures = "0.3.21"
|
|
itertools = "0.10.3"
|
|
log = "0.4.0"
|
|
mango-v4 = { path = "../../programs/mango-v4", features = ["client"] }
|
|
mango-v4-client = { path = "../../lib/client" }
|
|
pyth-sdk-solana = "0.1.0"
|
|
serum_dex = { git = "https://github.com/openbook-dex/program.git", default-features=false,features = ["no-entrypoint", "program"] }
|
|
solana-client = "~1.14.9"
|
|
solana-sdk = "~1.14.9"
|
|
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"
|