-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (26 loc) · 760 Bytes
/
Cargo.toml
File metadata and controls
27 lines (26 loc) · 760 Bytes
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
[workspace]
resolver = "2"
members = [
"benchmark",
"interface",
"programs/bincode-v1",
"programs/bincode-v2",
"programs/borsh",
"programs/bytemuck",
"programs/wincode",
"programs/wincode-zerocopy",
"programs/transmute",
"programs/zerocopy"
]
[workspace.dependencies]
bincode-v1 = { package = "bincode", version = "1.3.3" }
bincode = { version = "2.0.1", default-features = false }
borsh = { version = "1.6.0", default-features = false }
bytemuck = { version = "1.24.0" }
pinocchio = "0.10.1"
serde = { version = "1.0.228", default-features = false }
solana-address = "2.0.0"
solana-program-error = "3.0.0"
tide-interface = { version = "0.0.0", path = "interface" }
wincode = { version = "0.3.1" }
zerocopy = "0.8.30"