2022-06-18 07:31:28 -07:00
|
|
|
[package]
|
|
|
|
name = "client"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
2022-06-22 04:09:24 -07:00
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
2022-06-18 07:31:28 -07:00
|
|
|
[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-06-18 07:31:28 -07:00
|
|
|
anyhow = "1.0"
|
|
|
|
fixed = { version = "=1.11.0", features = ["serde", "borsh"] }
|
|
|
|
fixed-macro = "^1.1.1"
|
|
|
|
itertools = "0.10.3"
|
2022-08-03 00:47:44 -07:00
|
|
|
mango-v4 = { path = "../programs/mango-v4", features = ["no-entrypoint", "client"] }
|
2022-06-18 07:31:28 -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-31 00:25:11 -07:00
|
|
|
shellexpand = "2.1.0"
|
2022-07-25 07:07:53 -07:00
|
|
|
solana-account-decoder = "~1.10.29"
|
2022-07-20 01:17:07 -07:00
|
|
|
solana-client = "~1.10.29"
|
|
|
|
solana-sdk = "~1.10.29"
|
2022-08-09 05:30:53 -07:00
|
|
|
spl-associated-token-account = "1.0.3"
|
2022-07-19 05:56:26 -07:00
|
|
|
thiserror = "1.0.31"
|
2022-08-04 08:01:00 -07:00
|
|
|
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"
|