-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (44 loc) · 1.48 KB
/
Cargo.toml
File metadata and controls
49 lines (44 loc) · 1.48 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
[package]
name = "cu-library"
version = "0.1.0"
edition = "2021"
[features]
no-entrypoint = []
profile-program = []
default = ["profile-program", "custom-heap"]
custom-heap = []
[dependencies]
pinocchio = "0.9.1"
solana-msg = "2.2.1"
solana-pubkey = "2.2.1"
arrayvec = { version = "0.7"}
tinyvec = { version = "1.10.0", features = ["alloc"] }
heapless = { version = "0.8", default-features = false }
smallvec = "1.15.1"
light-program-profiler = { git = "https://github.com/Lightprotocol/light-program-profiler", features = ["profile-program", "inline"] }
wincode = { version = "0.4.9", features = ["solana-short-vec"] }
wincode-derive = "0.4.3"
solana-short-vec = "2.2"
serde = { version = "1.0", features = ["derive"] }
borsh = "0.10.4"
borsh1 = { package = "borsh", version = "1", features = ["derive"] }
bincode = "1.3"
rkyv = { version = "0.7", features = ["validation"] }
blake3 = "=1.8.2"
zerocopy = { version = "0.8.25", features = [ "derive"] }
light-zero-copy = { version= "0.4", features = [ "mut", "std", "derive"] }
bytemuck = { version = "1", features = ["derive"] }
[dev-dependencies]
light-program-profiler = { git = "https://github.com/Lightprotocol/light-program-profiler", features = ["mollusk"] }
mollusk-svm = "0.3.0"
solana-instruction = "2.2.1"
solana-account = "2.2.1"
solana-pubkey = "2.2.1"
[lib]
crate-type = ["cdylib", "lib"]
[lints.rust.unexpected_cfgs]
level = "allow"
check-cfg = [
'cfg(target_os, values("solana"))',
'cfg(feature, values("frozen-abi", "no-entrypoint"))',
]