2022-04-09 12:18:07 -07:00
|
|
|
[package]
|
|
|
|
name = "keeper"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2022-07-26 23:52:41 -07:00
|
|
|
anchor-client = { path = "../anchor/client" }
|
|
|
|
anchor-lang = { path = "../anchor/lang" }
|
|
|
|
anchor-spl = { path = "../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"] }
|
2022-07-14 03:57:19 -07:00
|
|
|
client = { path = "../client" }
|
2022-04-13 07:41:15 -07:00
|
|
|
dotenv = "0.15.0"
|
2022-05-06 01:13:33 -07:00
|
|
|
env_logger = "0.8.4"
|
2022-05-27 22:05:34 -07:00
|
|
|
fixed = { version = "=1.11.0", features = ["serde", "borsh"] }
|
|
|
|
fixed-macro = "^1.1.1"
|
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"
|
2022-08-03 00:47:44 -07:00
|
|
|
mango-v4 = { path = "../programs/mango-v4", features = ["no-entrypoint", "client"] }
|
2022-05-27 22:05:34 -07:00
|
|
|
pyth-sdk-solana = "0.1.0"
|
|
|
|
serum_dex = { version = "0.4.0", git = "https://github.com/blockworks-foundation/serum-dex.git", default-features=false, features = ["no-entrypoint", "program"] }
|
2022-07-20 01:17:07 -07:00
|
|
|
solana-client = "~1.10.29"
|
|
|
|
solana-sdk = "~1.10.29"
|
2022-07-14 03:57:19 -07:00
|
|
|
tokio = { version = "1.14.1", features = ["rt-multi-thread", "time", "macros", "sync"] }
|