-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
58 lines (51 loc) · 2.16 KB
/
Cargo.toml
File metadata and controls
58 lines (51 loc) · 2.16 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
[workspace]
resolver = "2"
members = [
"ag/*",
"core",
"generic",
"jiminy",
"legacy/*",
"lido/*",
"marinade/*",
"spl/*",
"std",
"update-traits",
"wsol/*",
]
[workspace.package]
edition = "2021"
license-file = "LICENSE"
version = "0.1.0"
[workspace.dependencies]
# In general, keep default-features = false in workspace
# and enable individual features in indiv crates
const-crypto = { version = "^0.3.0", default-features = false }
generic-array-struct = { version = "^0.3.2", default-features = false }
sanctum-fee-ratio = { version = "^2.1", default-features = false }
sanctum-u64-ratio = { version = "^2.1", default-features = false }
# dev-dependencies
# individual stake pool SDKs (for impls)
sanctum-marinade-liquid-staking-core = { git = "https://github.com/igneous-labs/sanctum-marinade-liquid-staking-sdk.git", branch = "main", default-features = false }
sanctum-spl-stake-pool-core = { git = "https://github.com/igneous-labs/sanctum-spl-stake-pool-sdk.git", branch = "master", default-features = false }
solido-legacy-core = { git = "https://github.com/igneous-labs/solido-legacy-sdk.git", branch = "master", default-features = false }
# jiminy crates
jiminy-cpi = { git = "https://github.com/igneous-labs/jiminy.git", branch = "master", default-features = false }
jiminy-return-data = { git = "https://github.com/igneous-labs/jiminy.git", branch = "master", default-features = false }
# workspace members
sanctum-svc-ag-core = { path = "ag/core" }
sanctum-svc-ag-std = { path = "ag/std" }
sanctum-svc-core = { path = "core" }
sanctum-svc-generic = { path = "generic" }
sanctum-svc-jiminy = { path = "jiminy" }
sanctum-svc-lido-core = { path = "lido/core" }
sanctum-svc-lido-std = { path = "lido/std" }
sanctum-svc-marinade-core = { path = "marinade/core" }
sanctum-svc-marinade-std = { path = "marinade/std" }
sanctum-svc-spl-core = { path = "spl/core" }
sanctum-svc-spl-std = { path = "spl/std" }
sanctum-svc-std = { path = "std" }
sanctum-svc-wsol-core = { path = "wsol/core" }
sanctum-svc-wsol-std = { path = "wsol/std" }
sanctum-update-traits = { path = "update-traits" }
sanctum-token-ratio-compat = { path = "legacy/sanctum-token-ratio-compat" }