-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
38 lines (34 loc) · 899 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
[workspace]
resolver = "2"
members = ["programs/*", "cli", "merkle-tree","merkle-verify"]
[workspace.package]
edition = "2021"
version = "0.0.1"
[profile.release]
overflow-checks = true
lto = "fat"
codegen-units = 1
[profile.release.build-override]
opt-level = 3
incremental = false
codegen-units = 1
[workspace.dependencies]
anchor-lang = { version = "0.30.1", features = ["init-if-needed"] }
anchor-spl = "0.30.1"
anchor-client = "0.30.1"
clap = { version = "3.2.25", features = ["derive", "env"] }
csv = "1.3.0"
serde = "1.0.137"
solana-program = { version = "1.18.21" }
solana-rpc-client = { version = "1.18.21" }
solana-sdk = { version = "1.18.21" }
spl-associated-token-account = "2.2.0"
fast-math = "0.1"
indexmap = "2.1.0"
merkle-verify = { path = "merkle-verify" }
rust_decimal = "1.35.0"
rand = "0.8.5"
serde_derive = "1.0.171"
serde_json = "1.0.102"
thiserror = "1.0.50"
hex = "0.4.3"