-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (37 loc) · 1.19 KB
/
Cargo.toml
File metadata and controls
41 lines (37 loc) · 1.19 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
[package]
name = "spl-stake-pool"
version = "1.0.0"
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.7"
borsh = { workspace = true }
bytemuck = "1.24"
num-derive = "0.4"
num-traits = "0.2"
num_enum = "0.7.2"
serde = "1.0.195"
serde_derive = "1.0.103"
solana-program = { workspace = true }
solana-security-txt = "1.1.1"
spl-math = { version = "0.2", path = "../../libraries/math", features = [ "no-entrypoint" ] }
spl-pod = { version = "0.1", path = "../../libraries/pod", features = ["borsh"] }
spl-token-2022 = { version = "1.0", path = "../../token/program-2022", features = [ "no-entrypoint" ] }
thiserror = "1.0"
bincode = "1.3.1"
[dev-dependencies]
assert_matches = "1.5.0"
proptest = "1.4"
solana-program-test = { workspace = true }
solana-sdk = { workspace = true }
solana-vote-program = { workspace = true }
spl-token = { version = "4.0", path = "../../token/program", features = [ "no-entrypoint" ] }
test-case = "3.3"
[lib]
crate-type = ["cdylib", "lib"]