-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (47 loc) · 1.28 KB
/
Cargo.toml
File metadata and controls
50 lines (47 loc) · 1.28 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
46
47
48
49
50
[workspace.package]
version = "0.2.0"
[workspace]
resolver = "2"
members = [
"light-instruction-decoder",
"light-instruction-decoder-derive",
"examples/counter",
"tests",
]
[workspace.dependencies]
# Solana v3
solana-pubkey = { version = "3", features = ["curve25519"] }
solana-instruction = "3"
solana-signature = "3"
solana-message = "3"
solana-transaction = "3"
solana-keypair = "3"
solana-signer = "3"
solana-system-interface = "2"
solana-native-token = "3"
solana-hash = "3"
solana-program-pack = "3"
solana-program-option = "3"
# Shared
borsh = { version = "1", default-features = false, features = ["std", "derive"] }
bs58 = "0.5.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tabled = "0.20"
zeroize = "1.8"
# Derive macro
proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "2.0", features = ["visit", "visit-mut", "full"] }
darling = "0.21"
heck = "0.5"
sha2 = "0.10"
# LiteSVM (patched locally via [patch.crates-io])
litesvm = "0.9"
# Testing
insta = { version = "1", features = ["json"] }
# Internal
light-instruction-decoder = { path = "light-instruction-decoder", version = "0.2.0" }
light-instruction-decoder-derive = { path = "light-instruction-decoder-derive", version = "0.2.0" }
[patch.crates-io]
litesvm = { path = "../litesvm/crates/litesvm" }