-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (32 loc) · 902 Bytes
/
Cargo.toml
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
[workspace]
resolver = "2"
members = ["clients/rust", "program"]
# Required for CI
exclude = ["solana-conformance/impl/solfuzz-agave"]
[workspace.package]
authors = ["Anza Technology Maintainers <[email protected]>"]
repository = "https://github.com/solana-program/config"
readme = "./README.md"
license-file = "./LICENSE"
edition = "2021"
[workspace.metadata.cli]
solana = "2.0.2"
# Specify Rust toolchains for rustfmt, clippy, and build.
# Any unprovided toolchains default to stable.
[workspace.metadata.toolchains]
format = "nightly-2024-05-02"
lint = "nightly-2024-05-02"
[workspace.dependencies]
assert_matches = "1.5.0"
bincode = "1.3.3"
borsh = "0.10"
kaigan = "0.2.5"
mollusk-svm = "0.0.10-solana-2.0"
mollusk-svm-bencher = "0.0.10-solana-2.0"
num-derive = "0.4"
num-traits = "0.2"
serde = "1.0.193"
serde_with = "3.0"
solana-program = "2.0.1"
solana-sdk = "2.0.1"
thiserror = "1.0.61"