-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (36 loc) · 827 Bytes
/
Cargo.toml
File metadata and controls
41 lines (36 loc) · 827 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
39
40
41
[package]
name = "counter"
version = "1.0.0"
description = "Native counter program using light protocol"
repository = "https://github.com/Lightprotocol/program-examples"
license = "Apache-2.0"
edition = "2021"
[lib]
crate-type = ["cdylib", "lib"]
name = "counter"
[features]
no-entrypoint = []
no-idl = []
no-log-ix-name = []
cpi = ["no-entrypoint"]
test-sbf = []
default = []
[dependencies]
light-sdk = "0.23.0"
light-hasher = "5.0.0"
light-compressed-account = "0.11.0"
solana-program = "2.2"
light-macros = "2.2.0"
borsh = "0.10.4"
[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"))',
]