-
Notifications
You must be signed in to change notification settings - Fork 199
/
Copy pathCargo.toml
30 lines (27 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
[package]
name = "whirlpool_repositioning_bot"
version = "0.2.0"
edition = "2021"
[dependencies]
clap = { version = "^4.5.21", features = ["derive"] }
colored = { version = "^2.0" }
# We are using the local versions of the Whirlpools SDKs. However, when you move
# this example to a new repository, you can use the latest versions of the SDKs by
# uncommenting the following lines:
#
# orca_whirlpools = { version = "^2.0" }
# orca_whirlpools_client = { version = "^2.0" }
# orca_whirlpools_core = { version = "^2.0" }
#
# And removing the following lines:
orca_whirlpools = { path = '../../../rust-sdk/whirlpool' }
orca_whirlpools_client = { path = '../../../rust-sdk/client' }
orca_whirlpools_core = { path = '../../../rust-sdk/core' }
serde_json = { version = "^1.0" }
solana-client = { version = "^2.1" }
solana-sdk = { version = "^2.1" }
spl-token-2022 = { version = "^7.0", features = ["no-entrypoint"] }
spl-associated-token-account = { version = "^6.0" }
tokio = { version = "^1.41.1" }
tokio-retry = { version = "^0.3.0" }
dotenv = { version = "^0.15.0" }