32 lines
976 B
TOML
32 lines
976 B
TOML
[package]
|
|
name = "client"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
anchor-client = { path = "../anchor/client" }
|
|
anchor-lang = { path = "../anchor/lang" }
|
|
anchor-spl = { path = "../anchor/spl" }
|
|
anyhow = "1.0"
|
|
fixed = { version = "=1.11.0", features = ["serde", "borsh"] }
|
|
fixed-macro = "^1.1.1"
|
|
itertools = "0.10.3"
|
|
mango-v4 = { path = "../programs/mango-v4", features = ["no-entrypoint", "client"] }
|
|
pyth-sdk-solana = "0.1.0"
|
|
serum_dex = { version = "0.5.6", git = "https://github.com/blockworks-foundation/serum-dex.git", default-features=false,features = ["no-entrypoint", "program"], branch = "ckamm/find_by_key" }
|
|
shellexpand = "2.1.0"
|
|
solana-account-decoder = "~1.10.35"
|
|
solana-client = "~1.10.35"
|
|
solana-sdk = "~1.10.35"
|
|
spl-associated-token-account = "1.0.3"
|
|
thiserror = "1.0.31"
|
|
log = "0.4"
|
|
reqwest = "0.11.11"
|
|
tokio = { version = "1", features = ["full"] }
|
|
serde = "1.0.141"
|
|
serde_json = "1.0.82"
|
|
base64 = "0.13.0"
|
|
bincode = "1.3.3" |