forked from jito-foundation/restaking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
91 lines (86 loc) · 2.74 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
85
86
87
88
89
90
91
[workspace]
members = [
"account_traits_derive",
"bytemuck",
"cli",
"clients/rust/restaking_client",
"clients/rust/vault_client",
"core",
"crankers",
"integration_tests",
"restaking_core",
"restaking_program",
"restaking_sdk",
"shank-cli",
"vault_core",
"vault_program",
"vault_sdk"]
resolver = "2"
[profile.release]
overflow-checks = true
lto = "fat"
codegen-units = 1
[profile.release.build-override]
opt-level = 3
incremental = false
codegen-units = 1
[workspace.package]
version = "0.0.3"
authors = ["Jito Network Maintainers <[email protected]>"]
repository = "https://github.com/jito-foundation/restaking"
homepage = "https://jito.network/"
license = "BSL"
edition = "2021"
readme = "README.md"
[workspace.dependencies]
anchor-lang = { version = "0.30.1", features = ["idl-build"] }
anyhow = "1.0.86"
assert_matches = "1.5.0"
borsh = { version = "0.10.3" }
bytemuck = { version = "1.16.3", features = ["min_const_generics"] }
cfg-if = "1.0.0"
chrono = "0.4.38"
clap = { version = "4.5.16", features = ["derive", "env"] }
clap-markdown = { version = "0.1.4" }
const_str_to_pubkey = "0.1.1"
dotenv = "0.15.0"
envfile = "0.2.1"
env_logger = "0.10.2"
futures = "0.3.31"
jito-bytemuck = { path = "bytemuck", version = "=0.0.3" }
jito-account-traits-derive = { path = "account_traits_derive", version = "=0.0.3" }
jito-jsm-core = { path = "core", version = "=0.0.3" }
jito-restaking-client = { path = "clients/rust/restaking_client", version = "=0.0.3" }
jito-restaking-core = { path = "restaking_core", version = "=0.0.3" }
jito-restaking-program = { path = "restaking_program", version = "=0.0.3" }
jito-restaking-sdk = { path = "restaking_sdk", version = "=0.0.3" }
jito-vault-client = { path = "clients/rust/vault_client", version = "=0.0.3" }
jito-vault-core = { path = "vault_core", version = "=0.0.3" }
jito-vault-program = { path = "vault_program", version = "=0.0.3" }
jito-vault-sdk = { path = "vault_sdk", version = "=0.0.3" }
log = "0.4.22"
matches = "0.1.10"
num-derive = "0.4.2"
num-traits = "0.2.19"
proc-macro2 = "1.0.86"
quote = "1.0.36"
serde = { version = "^1.0", features = ["derive"] }
serde_with = "3.9.0"
shank = "0.4.2"
shank_idl = "0.4.2"
solana-account-decoder = "~1.18"
solana-cli-config = "~1.18"
solana-metrics = "~1.18"
solana-program = "~1.18"
solana-program-test = "~1.18"
solana-sdk = "~1.18"
solana-rpc-client = "~1.18"
solana-rpc-client-api = "~1.18"
solana-security-txt = "1.1.1"
spl-associated-token-account = { version = "2.2.0", features = ["no-entrypoint"] }
spl-token = { version = "4.0.0", features = ["no-entrypoint"] }
spl-token-2022 = { version = "3.0.4", features = ["no-entrypoint"] }
syn = "2.0.72"
test-case = "3.3.1"
thiserror = "1.0.57"
tokio = { version = "1.36.0", features = ["full"] }