-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
55 lines (47 loc) · 1.14 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[workspace]
members = [
"replay-engine",
"replayer",
"whirlpool-replay-command",
]
resolver = "2"
[workspace.package]
version = "0.1.6"
edition = "2021"
[workspace.dependencies]
bincode = "1.3.3"
serde = "*"
serde_derive = "*"
serde_json = "1.0.107"
flate2 = "1.0.27"
csv = "1.3.0"
base64 = "0.21.4"
chrono = "0.4.31"
thiserror = "*"
itertools = "0.10.1"
tokio = { version = "1.14.1", features = ["full"] }
reqwest = { version = "0.11.22", features = ["blocking"] }
clap = { version = "4.4.11", features = ["derive"] }
anyhow = "1.0.75"
tempfile = "3.8.0"
# DB
mysql = "24.0.0"
# RocksDB
rocksdb = "0.21.0"
# anchor & whirlpool
anchor-lang = "0.29.0"
anchor-client = "0.29.0"
whirlpool_base = { git = "https://github.com/orca-so/whirlpools", branch = "yugure/relax-spl-token-version-on-v0.3.2", package = "whirlpool" }
# borsh
borsh = "0.10.3"
# use 1.17.22
solana-sdk = "=1.17.22"
solana-program = "=1.17.22"
solana-program-runtime = "=1.17.22"
solana-accounts-db = "=1.17.22"
solana-transaction-status = "=1.17.22"
solana-client = "=1.17.22"
solana-runtime = "=1.17.22"
solana-cli-output = "=1.17.22"
spl-token = "=4.0.0"
spl-token-2022 = "=1.0.0"