forked from mrgnlabs/marginfi-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (34 loc) · 1.04 KB
/
Cargo.toml
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
30
31
32
33
34
35
36
37
38
cargo-features = ["workspace-inheritance"]
[package]
name = "llama-snapshot-tool"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "llama-snapshot"
path = "src/bin/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "3.2.6", features = ["derive"] }
marginfi = { path = "../../programs/marginfi", version = "0.1.0", features = [
"mainnet-beta",
"client",
"no-entrypoint",
] }
log = "0.4.17"
env_logger = "0.9.0"
solana-client = "1.14.11"
solana-sdk = { workspace = true }
anchor-client = "0.26.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.81"
fixed = "1.12.0"
fixed-macro = "1.2.0"
bytemuck = "1.12.3"
solana-account-decoder = { workspace = true }
reqwest = { version = "0.11", features = ["json"] } # reqwest with JSON parsing support
futures = "0.3" # for our async / await blocks
tokio = { version = "1.12.0", features = ["full"] } # for our async runtime
anyhow = "1.0"
lazy_static = "1.4"
spl-token = "3.5.0"
rust-s3 = "0.33.0"