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
34 lines (28 loc) · 823 Bytes
/
Cargo.toml
File metadata and controls
34 lines (28 loc) · 823 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
[package]
name = "quasar-transfer-sol"
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"]
[features]
alloc = []
client = []
debug = []
[dependencies]
quasar-lang = "0.0"
solana-instruction = { version = "3.2.0" }
[dev-dependencies]
quasar-transfer-sol-client = { path = "target/client/rust/quasar-transfer-sol-client" }
quasar-svm = { version = "0.1" }
solana-account = { version = "3.4.0" }
solana-address = { version = "2.2.0", features = ["decode"] }
solana-instruction = { version = "3.2.0", features = ["bincode"] }
solana-pubkey = { version = "4.1.0" }