-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
40 lines (38 loc) · 2.33 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
[profile.release]
panic = "unwind"
[patch."https://github.com/sora-xor/sora2-common.git"]
# beefy-light-client = { path = "../sora2-common/pallets/beefy-light-client" }
# beefy-light-client-rpc = { path = "../sora2-common/pallets/beefy-light-client/rpc" }
# beefy-light-client-runtime-api = { path = "../sora2-common/pallets/beefy-light-client/runtime-api" }
# leaf-provider = { path = "../sora2-common/pallets/leaf-provider" }
# leaf-provider-rpc = { path = "../sora2-common/pallets/leaf-provider/rpc" }
# leaf-provider-runtime-api = { path = "../sora2-common/pallets/leaf-provider/runtime-api" }
# bridge-common = { path = "../sora2-common/pallets/bridge-common" }
# dispatch = { path = "../sora2-common/pallets/dispatch" }
# bridge-types = { path = "../sora2-common/pallets/types" }
# bridge-data-signer = { path = "../sora2-common/pallets/data-signer" }
# multisig-verifier = { path = "../sora2-common/pallets/multisig-verifier" }
# substrate-bridge-channel = { path = "../sora2-common/pallets/substrate-channel" }
# bridge-channel-rpc = { path = "../sora2-common/pallets/substrate-channel/rpc" }
beefy-light-client = { git = "https://github.com/sora-xor//sora2-common.git", tag = "1.0.22" }
beefy-light-client-rpc = { git = "https://github.com/sora-xor//sora2-common.git", tag = "1.0.22" }
beefy-light-client-runtime-api = { git = "https://github.com/sora-xor//sora2-common.git", tag = "1.0.22" }
leaf-provider = { git = "https://github.com/sora-xor//sora2-common.git", tag = "1.0.22" }
leaf-provider-rpc = { git = "https://github.com/sora-xor//sora2-common.git", tag = "1.0.22" }
leaf-provider-runtime-api = { git = "https://github.com/sora-xor//sora2-common.git", tag = "1.0.22" }
bridge-common = { git = "https://github.com/sora-xor//sora2-common.git", tag = "1.0.22" }
dispatch = { git = "https://github.com/sora-xor//sora2-common.git", tag = "1.0.22" }
bridge-types = { git = "https://github.com/sora-xor//sora2-common.git", tag = "1.0.22" }
bridge-data-signer = { git = "https://github.com/sora-xor//sora2-common.git", tag = "1.0.22" }
multisig-verifier = { git = "https://github.com/sora-xor//sora2-common.git", tag = "1.0.22" }
substrate-bridge-channel = { git = "https://github.com/sora-xor//sora2-common.git", tag = "1.0.22" }
[workspace]
members = [
"node",
"pallets/*",
"runtime",
"parachain-gen",
"parachain-common",
"utils/*",
]
resolver = "2"