-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (44 loc) · 1008 Bytes
/
Cargo.toml
File metadata and controls
49 lines (44 loc) · 1008 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "spl-stake-pool"
version = "2.0.1"
description = "Solana Program Library Stake Pool"
authors = ["Solana Labs Maintainers <maintainers@solanalabs.com>"]
repository = "https://github.com/solana-labs/solana-program-library"
license = "Apache-2.0"
edition = "2021"
[features]
no-entrypoint = []
test-sbf = []
[dependencies]
arrayref = "0.3.9"
borsh = "1.5.5"
bytemuck = "1.22"
num-derive = "0.4"
num-traits = "0.2"
num_enum = "0.7.3"
serde = "1.0.218"
serde_derive = "1.0.103"
solana-program = "2.2.1"
solana-security-txt = "1.1.1"
spl-pod = { version = "0.5.0", features = [
"borsh",
] }
spl-token-2022 = { version = "7.0.0", features = [
"no-entrypoint",
] }
thiserror = "2.0"
bincode = "1.3.1"
[dev-dependencies]
assert_matches = "1.5.0"
proptest = "1.6"
solana-program-test = "2.2.0"
solana-sdk = "2.2.1"
solana-vote-program = "2.2.0"
spl-token = { version = "7.0", features = [
"no-entrypoint",
] }
test-case = "3.3"
[lib]
crate-type = ["cdylib", "lib"]
[lints]
workspace = true