-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (27 loc) · 1.16 KB
/
Cargo.toml
File metadata and controls
29 lines (27 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "cypher-liquidator"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
solana-client = "~1.10.25"
solana-sdk = { version = "~1.10.25" }
solana-account-decoder = "~1.10.25"
solana-transaction-status = "~1.10.25"
tokio = { version = "1.14.1", features = ["rt", "macros"] }
dashmap = "5.3.4"
base64 = "0.13.0"
bytemuck = { version = "1.4.0" }
arrayref = "0.3.6"
serde = "1.0.137"
serde_json = "1.0.81"
clap = { version = "3.0", features = ["derive"] }
log = "0.4.17"
chrono = "0.4.19"
anchor-lang = ">0.24.2"
anchor-spl = { version = ">0.24.2", features = ["token", "associated_token", "dex"] }
anchor-client = ">0.24.2"
cypher = { git = "https://github.com/chugach-foundation/cypher-cpi.git", features = [ "client" ] }
serum_dex = { git = "https://github.com/chugach-foundation/serum-dex.git", rev="2fab8b9", features = ["fuzz", "no-entrypoint" ] }
jet-proto-math = { git = "https://github.com/chugach-foundation/jet-program-libraries.git", rev="ac8909b" }
jet-proto-proc-macros = { git = "https://github.com/chugach-foundation/jet-program-libraries.git", rev="ac8909b" }