2022-04-09 12:18:07 -07:00
|
|
|
[package]
|
2023-02-20 05:08:38 -08:00
|
|
|
name = "mango-v4-keeper"
|
2023-01-13 02:38:56 -08:00
|
|
|
version = "0.3.0"
|
2022-04-09 12:18:07 -07:00
|
|
|
edition = "2021"
|
|
|
|
|
2023-02-20 05:08:38 -08:00
|
|
|
[[bin]]
|
|
|
|
name = "keeper"
|
|
|
|
path = "src/main.rs"
|
2022-04-09 12:18:07 -07:00
|
|
|
|
|
|
|
[dependencies]
|
2023-02-20 05:08:38 -08:00
|
|
|
anchor-client = { path = "../../3rdparty/anchor/client" }
|
|
|
|
anchor-lang = { path = "../../3rdparty/anchor/lang" }
|
|
|
|
anchor-spl = { path = "../../3rdparty/anchor/spl" }
|
2022-04-09 12:18:07 -07:00
|
|
|
anyhow = "1.0"
|
2022-04-13 07:41:15 -07:00
|
|
|
clap = { version = "3.1.8", features = ["derive", "env"] }
|
|
|
|
dotenv = "0.15.0"
|
2022-05-06 01:13:33 -07:00
|
|
|
env_logger = "0.8.4"
|
2023-03-11 23:50:42 -08:00
|
|
|
fixed = { path = "../../3rdparty/fixed", version = "1.11.0", features = ["serde", "borsh"] }
|
2022-05-06 01:13:33 -07:00
|
|
|
futures = "0.3.21"
|
2022-08-08 04:40:33 -07:00
|
|
|
itertools = "0.10.3"
|
2022-05-06 01:13:33 -07:00
|
|
|
log = "0.4.0"
|
2023-02-20 05:08:38 -08:00
|
|
|
mango-v4 = { path = "../../programs/mango-v4", features = ["client"] }
|
|
|
|
mango-v4-client = { path = "../../lib/client" }
|
2022-05-27 22:05:34 -07:00
|
|
|
pyth-sdk-solana = "0.1.0"
|
2023-02-04 17:26:04 -08:00
|
|
|
serum_dex = { git = "https://github.com/openbook-dex/program.git", default-features=false,features = ["no-entrypoint", "program"] }
|
2022-12-10 02:16:47 -08:00
|
|
|
solana-client = "~1.14.9"
|
|
|
|
solana-sdk = "~1.14.9"
|
2022-07-14 03:57:19 -07:00
|
|
|
tokio = { version = "1.14.1", features = ["rt-multi-thread", "time", "macros", "sync"] }
|