-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (41 loc) · 1.31 KB
/
Cargo.toml
File metadata and controls
45 lines (41 loc) · 1.31 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
42
43
44
45
[workspace]
exclude = []
members = ["mantis-sdk", "mantis-cli"]
resolver = "2"
[workspace.package]
authors = ["Composable Finance"]
edition = "2021"
homepage = "https://mantis.app"
repository = "https://github.com/ComposableFi/mantis-sdk"
rust-version = "1.84.0"
version = "0.1.0"
[workspace.dependencies]
anchor-client = { version = "0.31.0", features = ["async"] }
anchor-lang = "0.31.0"
anchor-spl = "0.31.0"
solana-client = "~2.2.1"
solana-logger = "~2.2.1"
solana-program = "~2.2.1"
solana-rpc = "~2.2.1"
solana-sdk = "~2.2.1"
solana-streamer = "~2.2.1"
solana-test-validator = "~2.2.1"
solana-transaction-status = "~2.2.1"
spl-associated-token-account = { version = "7.0.0", features = ["no-entrypoint"] }
spl-token = { version = "8.0.0", features = ["no-entrypoint"] }
spl-token-2022 = { version = "8.0.1", features = ["no-entrypoint"] }
alloy = { version = "0.9.2", features = ["full", "node-bindings", "signer-mnemonic"] }
anyhow = "1.0.96"
base64 = "0.22.1"
chrono = "0.4.40"
clap = { version = "4.5.32", features = ["derive"] }
dotenv = "0.15.0"
env_logger = { version = "0.11.8" }
log = { version = "0.4.27" }
num = "0.4.3"
rand = "0.8.0"
strum = { version = "0.26.2", features = ["derive"] }
strum_macros = "0.26.4"
tokio = { version = "1.43.0", features = ["full"] }
tracing = "0.1.41"
mantis-sdk = { path = "mantis-sdk" }