-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (33 loc) · 857 Bytes
/
Cargo.toml
File metadata and controls
38 lines (33 loc) · 857 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
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "native-program-create"
version = "0.1.0"
description = "Native Solana program for creating compressed accounts"
edition = "2021"
[lib]
crate-type = ["cdylib", "lib"]
name = "native_program_create"
[features]
no-entrypoint = []
test-sbf = []
test-helpers = ["dep:light-program-test", "dep:solana-sdk"]
default = []
[dependencies]
light-sdk = "0.23.0"
light-hasher = "5.0.0"
light-macros = "2.2.0"
solana-program = "2.2"
borsh = "0.10.4"
light-program-test = { version = "0.23.0", optional = true }
solana-sdk = { version = "2.2", optional = true }
[dev-dependencies]
light-program-test = "0.23.0"
light-client = "0.23.0"
tokio = "1.49.0"
solana-sdk = "2.2"
blake3 = "=1.8.2"
[lints.rust.unexpected_cfgs]
level = "allow"
check-cfg = [
'cfg(target_os, values("solana"))',
'cfg(feature, values("frozen-abi", "no-entrypoint"))',
]