-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
88 lines (83 loc) · 3.41 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
[workspace]
members = [
"cli",
"integration_tests",
"clients/rust/weight_table_client",
"reward_core",
"reward_program",
"reward_sdk",
"shank_cli",
"weight_table_core",
"weight_table_program",
"weight_table_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.1"
authors = ["Jito Network Maintainers <[email protected]>"]
repository = "https://github.com/jito-foundation/restaking"
homepage = "https://jito.network/"
license = "Apache License 2.0"
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"] }
const_str_to_pubkey = "0.1.1"
envfile = "0.2.1"
env_logger = "0.10.2"
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-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"] }
syn = "2.0.72"
thiserror = "1.0.57"
tokio = { version = "1.36.0", features = ["full"] }
jito-weight-table-core = { path = "./weight_table_core", version = "0.0.1" }
jito-weight-table-program = { path = "./weight_table_program", version = "0.0.1" }
jito-weight-table-sdk = { path = "./weight_table_sdk", version = "0.0.1" }
jito-weight-table-client = { path = "./clients/rust/weight_table_client", version = "0.0.1" }
jito-reward-core = { path = "./reward_core", version = "=0.0.1" }
jito-reward-program = { path = "./reward_program", version = "=0.0.1" }
jito-reward-sdk = { path = "./reward_sdk", version = "=0.0.1" }
jito-reward-shank-cli = { path = "./shank_cli", version = "=0.0.1" }
jito-bytemuck = { git = "https://github.com/jito-foundation/restaking.git", version = "=0.0.2" }
jito-account-traits-derive = { git = "https://github.com/jito-foundation/restaking.git", version = "=0.0.2" }
jito-jsm-core = { git = "https://github.com/jito-foundation/restaking.git", version = "=0.0.2" }
jito-restaking-client = { git = "https://github.com/jito-foundation/restaking.git", version = "=0.0.2" }
jito-restaking-core = { git = "https://github.com/jito-foundation/restaking.git", version = "=0.0.2" }
jito-restaking-program = { git = "https://github.com/jito-foundation/restaking.git", version = "=0.0.2" }
jito-restaking-sdk = { git = "https://github.com/jito-foundation/restaking.git", version = "=0.0.2" }
jito-vault-client = { git = "https://github.com/jito-foundation/restaking.git", version = "=0.0.2" }
jito-vault-core = { git = "https://github.com/jito-foundation/restaking.git", version = "=0.0.2" }
jito-vault-program = { git = "https://github.com/jito-foundation/restaking.git", version = "=0.0.2" }
jito-vault-sdk = { git = "https://github.com/jito-foundation/restaking.git", version = "=0.0.2" }