-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (35 loc) · 857 Bytes
/
Cargo.toml
File metadata and controls
38 lines (35 loc) · 857 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
[workspace]
members = [
"program",
"clients/rust",
"tests/integration-tests",
"tests/test-hook-program",
]
resolver = "2"
[workspace.package]
version = "0.0.1"
edition = "2021"
[workspace.lints.rust]
unused_imports = "deny"
dead_code = "warn"
unused_variables = "warn"
deprecated = "warn"
unexpected_cfgs = { level = "warn", check-cfg = [
'cfg(target_os, values("solana"))',
] }
[workspace.dependencies]
codama = "^0.7.4"
serde_json = "^1.0.145"
const-crypto = "^0.3.0"
pinocchio = "^0.10.1"
pinocchio-associated-token-account = "^0.3.0"
pinocchio-log = "^0.5.1"
pinocchio-system = "^0.5.0"
pinocchio-token = "0.5.0"
pinocchio-token-2022 = "^0.2.0"
spl-token-2022 = { version = "^10.0.0", features = ["no-entrypoint"] }
thiserror = "^2.0.17"
solana-security-txt = "^1.1.2"
borsh = "^1.6.0"
num-derive = "^0.4.0"
num-traits = "^0.2.0"