-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (37 loc) · 1.1 KB
/
Cargo.toml
File metadata and controls
41 lines (37 loc) · 1.1 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
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "pmm-sim"
version = "0.2.0"
edition = "2024"
[lib]
name = "pmm_sim"
path = "src/lib.rs"
doctest = false
[[bin]]
name = "pmm-sim"
path = "src/main.rs"
[features]
default = []
register-tracing = ["litesvm/register-tracing"]
[dependencies]
base64 = "0.22.1"
chrono = "0.4.42"
clap = { version = "4.5.53", features = ["derive", "env", "color", "std"] }
eyre = "0.6.12"
indexmap = { version = "2.13.0", features = ["serde"] }
indicatif = "0.18.3"
litesvm = "0.10.0"
magnus-router-client = { git = "https://git@github.com/limechain/magnus.git", branch = "extend-router-ixs" }
magnus-shared = { git = "https://git@github.com/limechain/magnus.git", branch = "extend-router-ixs" }
polars = { version = "0.52", features = ["parquet"] }
secrecy = "0.10.3"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.148"
solana-client = "~3.1"
solana-commitment-config = "~3.1"
solana-compute-budget = "~3.1"
solana-sdk = "3.0.0"
spl-associated-token-account = "8.0.0"
spl-token = "9.0.0"
toml = "0.9.10"
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.22", features = ["env-filter", "time"] }