-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathCargo.toml
More file actions
62 lines (57 loc) · 1.59 KB
/
Cargo.toml
File metadata and controls
62 lines (57 loc) · 1.59 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[package]
name = "spl-single-pool"
version = "5.0.0"
description = "Solana Program Library Single-Validator Stake Pool"
authors = ["Anza Maintainers <maintainers@anza.xyz>"]
repository = "https://github.com/solana-program/single-pool"
license = "Apache-2.0"
edition = "2021"
[features]
no-entrypoint = []
custom-heap = []
custom-panic = []
[dependencies]
arrayref = "0.3.9"
borsh = "1.6.1"
num-derive = "0.4"
num-traits = "0.2"
num_enum = "0.7.6"
solana-account-info = "3.1"
solana-borsh = "3.0"
solana-clock = "3.0"
solana-cpi = "3.1"
solana-instruction = "3.0"
solana-msg = "3.1"
solana-native-token = "3.0"
solana-program-entrypoint = "3.1"
solana-program-error = "3.0"
solana-program-pack = "3.1"
solana-pubkey = { version = "4.2", features = ["borsh", "curve25519"] }
solana-rent = "3.0"
solana-stake-interface = { version = "3.0.0", features = ["bincode", "borsh", "sysvar"] }
solana-system-interface = { version = "3.0.0", features = ["bincode"] }
solana-sysvar = "3.1"
solana-vote-interface = { version = "5.0.0", features = ["bincode"] }
solana-security-txt = "1.1.2"
spl-token-interface = "2.0.0"
thiserror = "2.0"
[dev-dependencies]
approx = "0.5.1"
bincode = "1.3.3"
rand = "0.9.2"
solana-account = "3.4"
solana-hash = "4.3"
solana-keypair = "3.0"
solana-instruction-error = "2.3"
solana-program-test = { version = "3.1.3", features = ["agave-unstable-api"] }
solana-signer = "3.0"
solana-transaction = "3.0"
solana-transaction-error = "3.2"
spl-associated-token-account-interface = "2.0.0"
strum = "0.28.0"
strum_macros = "0.28.0"
test-case = "3.3"
[lib]
crate-type = ["cdylib", "lib"]
[lints]
workspace = true