-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (38 loc) · 1.27 KB
/
Cargo.toml
File metadata and controls
45 lines (38 loc) · 1.27 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
38
39
40
41
42
43
44
45
[workspace]
resolver = "2"
members = ["interface", "pinocchio/interface", "pinocchio/program", "program"]
[workspace.package]
authors = ["Anza Maintainers <maintainers@anza.xyz>"]
edition = "2021"
repository = "https://github.com/solana-program/token"
license = "Apache-2.0"
[workspace.dependencies]
mollusk-svm = "0.6.3"
mollusk-svm-fuzz-fixture = "0.6.3"
num-traits = "0.2"
pinocchio = "0.9.2"
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 = "3.0.0"
solana-system-interface = { version = "2.0", features = ["bincode"] }
[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.cli]
solana = "3.0.0"
# Specify Rust toolchains for rustfmt, clippy, and build.
# Any unprovided toolchains default to stable.
[workspace.metadata.toolchains]
format = "nightly-2025-02-16"
lint = "nightly-2025-02-16"
[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