-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
84 lines (77 loc) · 2.66 KB
/
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
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
77
78
79
80
81
82
83
84
[workspace]
resolver = "2"
members = ["clients/cli", "program", "program/tests/programs/test-transfer-hook"]
[workspace.metadata.cli]
solana = "2.2.0"
# Specify Rust toolchains for rustfmt, clippy, and build.
# Any unprovided toolchains default to stable.
[workspace.metadata.toolchains]
format = "nightly-2024-11-22"
lint = "nightly-2024-11-22"
[workspace.metadata.spellcheck]
config = "scripts/spellcheck.toml"
[workspace.lints.rust.unexpected_cfgs]
level = "warn"
check-cfg = [
'cfg(target_os, values("solana"))',
'cfg(feature, values("frozen-abi", "no-entrypoint"))',
]
[workspace.package]
authors = ["Anza Maintainers <maintainers@anza.xyz>"]
repository = "https://github.com/solana-program/token-wrap"
homepage = "https://anza.xyz/"
license = "Apache-2.0"
edition = "2021"
[workspace.dependencies]
anyhow = "1.0.97"
bytemuck = { version = "1.22.0", features = ["derive"] }
clap = { version = "3.2.25", features = ["derive"] }
mollusk-svm = "0.1.4"
mollusk-svm-programs-token = "0.1.4"
num-derive = "0.4.2"
num-traits = "0.2.19"
serde = "1.0.219"
serde_derive = "1.0.219"
serde_json = "1.0.140"
serde_with = "3.12.0"
serial_test = "3.2.0"
solana-account = "2.2.1"
solana-account-info = "2.2.1"
solana-clap-v3-utils = "2.2.1"
solana-cli-config = "2.2.1"
solana-cli-output = "2.2.1"
solana-client = "2.2.1"
solana-commitment-config = "2.2.1"
solana-cpi = "2.2.1"
solana-decode-error = "2.2.1"
solana-logger = "2.2.1"
solana-instruction = "2.2.1"
solana-keypair = "2.2.1"
solana-msg = "2.2.1"
solana-program-entrypoint = "2.2.1"
solana-program-error = "2.2.1"
solana-program-option = "2.2.1"
solana-program-pack = "2.2.1"
solana-pubkey = "2.2.1"
solana-remote-wallet = "2.2.1"
solana-rent = "2.2.1"
solana-sdk-ids = "2.2.1"
solana-signature = "2.2.1"
solana-signer = "2.2.1"
solana-system-interface = { version = "1.0.0", features = ["bincode"] }
solana-sysvar = "2.2.1"
solana-test-validator = "2.2.1"
solana-transaction = "2.2.1"
spl-associated-token-account-client = "2.0.0"
spl-pod = "0.5.1"
spl-tlv-account-resolution = "0.10.0"
spl-token = { version = "7.0.0", features = ["no-entrypoint"] }
spl-token-client = "0.14.0"
spl-token-wrap = { path = "program", features = ["no-entrypoint"] }
spl-transfer-hook-interface = "0.9.0"
tempfile = "3.19.1"
test-transfer-hook = { path = "program/tests/programs/test-transfer-hook", features = ["no-entrypoint"] }
thiserror = "2.0.12"
tokio = { version = "1.44.1", features = ["full"] }
# Should depend on the next crate version after 7.0.0 when https://github.com/solana-program/token-2022/pull/253 is deployed
spl-token-2022 = { git = "https://github.com/solana-program/token-2022", rev = "00e0f4723c2606c0facbb4921e1b2e2e030d1fa6", features = ["no-entrypoint"] }