forked from solana-developers/program-examples
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (27 loc) · 896 Bytes
/
Cargo.toml
File metadata and controls
33 lines (27 loc) · 896 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
[package]
name = "quasar-cnft-burn"
version = "0.1.0"
edition = "2021"
# Standalone workspace — not part of the root program-examples workspace.
# Quasar uses a different resolver and dependency tree.
[workspace]
[lints.rust.unexpected_cfgs]
level = "warn"
check-cfg = [
'cfg(target_os, values("solana"))',
]
[lib]
crate-type = ["cdylib", "lib"]
[features]
alloc = []
client = []
debug = []
[dependencies]
quasar-lang = { git = "https://github.com/blueshift-gg/quasar" }
# Direct dependency for invoke_with_bounds — needed for raw CPI with variable
# proof accounts. quasar-lang re-exports types but not the invoke functions.
solana-instruction-view = { version = "2", features = ["cpi"] }
solana-instruction = { version = "3.2.0" }
[dev-dependencies]
quasar-svm = { git = "https://github.com/blueshift-gg/quasar-svm" }
solana-address = { version = "2.2.0", features = ["decode"] }