-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathCargo.toml
75 lines (69 loc) · 1.75 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[workspace]
resolver = "2"
members = ["crates/*"]
exclude = ["node-litesvm/tests/clock-example"]
[workspace.package]
version = "0.5.0"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/LiteSVM/litesvm"
rust-version = "1.75.0"
[workspace.dependencies]
ansi_term = "0.12"
bincode = "1.3"
criterion = "0.5"
ed25519-dalek = "1.0.1"
indexmap = "2.6"
itertools = "0.14"
libsecp256k1 = "0.6.0"
litesvm = { path = "crates/litesvm", version = "0.5" }
log = "0.4"
napi = { version = "2.12.2", default-features = false }
qualifier_attr = "0.2.2"
serde = "1.0"
smallvec = "1.13"
solana-account = "2.1.10"
solana-address-lookup-table-program = "2.1.10"
solana-bpf-loader-program = "2.1.10"
solana-clock = "2.1.10"
solana-compute-budget = "2.1.10"
solana-compute-budget-program = "2.1.10"
solana-config-program = "2.1.10"
solana-fee = "2.1.10"
solana-instruction = "2.1.10"
solana-keypair = "0.0.2"
solana-loader-v4-program = "2.1.10"
solana-log-collector = "2.1.10"
solana-program = "2.1.10"
solana-program-option = "2.1.10"
solana-program-pack = "2.1.10"
solana-program-runtime = "2.1.10"
solana-program-test = "2.1.10"
solana-pubkey = "2.1.10"
solana-runtime-transaction = "2.1.10"
solana-sdk = "2.1.10"
solana-signer = "0.0.2"
solana-stake-program = "2.1.10"
solana-svm = "2.1.10"
solana-svm-transaction = "2.1.10"
solana-system-program = "2.1.10"
solana-timings = "2.1.10"
solana-vote-program = "2.1.10"
spl-associated-token-account-client = "2.0"
spl-token = "7.0.0"
spl-token-2022 = "6.0.0"
test-log = "0.2"
thiserror = "2.0"
tokio = "1.35"
[profile.bench]
debug = true
[profile.release]
lto = "fat"
codegen-units = 1
strip = "symbols"
[profile.release.build-override]
opt-level = 3
incremental = false
codegen-units = 1
[workspace.lints.clippy]
result_large_err = "allow"