-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (32 loc) · 1.08 KB
/
Cargo.toml
File metadata and controls
37 lines (32 loc) · 1.08 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
[workspace]
resolver = "2"
members = ["interface", "pinocchio/interface", "pinocchio/program", "program"]
[workspace.package]
authors = ["Anza Maintainers <maintainers@anza.xyz>"]
repository = "https://github.com/solana-program/token"
license = "Apache-2.0"
edition = "2021"
[workspace.lints.rust.unexpected_cfgs]
level = "warn"
check-cfg = [
'cfg(target_os, values("solana"))',
'cfg(feature, values("custom-alloc", "custom-panic", "frozen-abi", "no-entrypoint"))',
]
[workspace.metadata.spellcheck]
config = "scripts/spellcheck.toml"
[workspace.metadata.release]
pre-release-commit-message = "Publish {{crate_name}} v{{version}}"
tag-message = "Publish {{crate_name}} v{{version}}"
consolidate-commits = false
[workspace.dependencies]
mollusk-svm = "0.11.0"
mollusk-svm-fuzz-fixture = "0.11.0"
num-traits = "0.2"
pinocchio = "0.9.3"
solana-instruction = "3.0.0"
solana-program-error = "3.0.0"
solana-program-option = "3.0.0"
solana-program-pack = "3.0.0"
solana-pubkey = "4.0.0"
solana-system-interface = { version = "2.0", features = ["bincode"] }
spl-token-interface = { path = "interface" }