-
Notifications
You must be signed in to change notification settings - Fork 192
Expand file tree
/
Copy pathCargo.toml
More file actions
76 lines (73 loc) · 2.71 KB
/
Copy pathCargo.toml
File metadata and controls
76 lines (73 loc) · 2.71 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[package]
name = "spl-token-client"
version = "0.19.1"
description = "SPL-Token Rust Client"
documentation = "https://docs.rs/spl-token-client"
readme = "README.md"
authors = { workspace = true }
repository = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
edition = { workspace = true }
[features]
default = ["display"]
dev-context-only-utils = [
"dep:solana-banks-client",
"dep:solana-banks-interface",
"dep:solana-program-test",
]
display = ["dep:solana-cli-output"]
[dependencies]
async-trait = "0.1"
bincode = "1.3.2"
bytemuck = "1.25.0"
futures = "0.3.32"
futures-util = "0.3"
solana-account = "3.2.0"
solana-address = "2.6.1"
solana-banks-client = { version = "4.0.0-rc.0", optional = true }
solana-banks-interface = { version = "4.0.0-rc.0", optional = true }
solana-compute-budget-interface = "3.0.0"
solana-cli-output = { version = "4.0.0-rc.0", features = ["agave-unstable-api"], optional = true }
solana-hash = "4.2.0"
solana-instruction = "3.0.0"
solana-message = "3.0.0"
solana-packet = "4.1.0"
solana-program-error = "3.0.1"
solana-program-pack = "3.1.0"
solana-program-test = { version = "4.0.0-rc.0", optional = true, features = ["agave-unstable-api"] }
solana-rpc-client = "4.0.0-rc.0"
solana-rpc-client-api = "4.0.0-rc.0"
solana-signature = "3.0.0"
solana-signer = "3.0.0"
solana-system-interface = "3.2.0"
solana-transaction = "3.0.0"
solana-zk-sdk = "7.0.1"
spl-associated-token-account-interface = { version = "2.0.0" }
spl-elgamal-registry = { version = "0.5.0", path = "../../confidential/elgamal-registry", features = ["no-entrypoint"] }
spl-memo-interface = "2.1.0"
spl-record = { version = "0.4.0", features = ["no-entrypoint"] }
spl-token-interface = "3.0.0"
spl-token-confidential-transfer-proof-extraction = { path = "../../confidential/proof-extraction", version = "0.6.0" }
spl-token-confidential-transfer-proof-generation = { path = "../../confidential/proof-generation", version = "0.6.0" }
spl-token-2022-interface = { version = "3.1.0", path = "../../interface" }
spl-token-2022 = { version = "11.0.0", path = "../../program", features = ["no-entrypoint"] }
spl-token-group-interface = "0.7.2"
spl-token-metadata-interface = "1.0.0"
spl-transfer-hook-interface = { version = "2.1.0" }
solana-zk-sdk-pod = "0.1.2"
solana-zk-elgamal-proof-interface = "0.1.2"
tokio = "1"
thiserror = "2.0"
[dev-dependencies]
async-trait = "0.1"
borsh = "1.6.1"
bytemuck = "1.25.0"
futures-util = "0.3"
solana-program-test = { version = "4.0.0-rc.0", features = ["agave-unstable-api"] }
solana-sdk = "3.0.0"
solana-sdk-ids = "3.1.0"
spl-instruction-padding-interface = "1.0.0"
spl-tlv-account-resolution = "0.11.0"
spl-token-client = { path = ".", features = ["dev-context-only-utils"] }
test-case = "3.3"