forked from orca-so/whirlpool-tx-replayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (42 loc) · 1009 Bytes
/
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
[workspace]
members = [
"replay-engine",
"replayer",
"whirlpool-replay-command",
]
resolver = "2"
[workspace.package]
version = "0.0.2"
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"] }
# DB
mysql = "24.0.0"
# anchor & whirlpool
anchor-lang = "0.26.0"
anchor-client = "0.26.0"
whirlpool_base = { git = "https://github.com/orca-so/whirlpools", package = "whirlpool" }
# borsh
borsh = "0.9"
# use 1.16.18
solana-sdk = "=1.16.18"
solana-program = "=1.16.18"
solana-program-runtime = "=1.16.18"
solana-transaction-status = "=1.16.18"
solana-client = "=1.16.18"
solana-runtime = "=1.16.18"
solana-cli-output = "=1.16.18"
solana-ledger = "=1.16.18"
spl-token = "3.3.0"