This repository has been archived by the owner on Oct 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Cargo.toml
86 lines (80 loc) · 4.79 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
[profile.release]
panic = "unwind"
[workspace]
members = [
"bin/cli",
"bin/client",
"bin/runtime",
"bin/node",
"client/cli",
"client/client",
"client/ffi",
"client/gbot",
"pallets/bank",
"pallets/bounty",
"pallets/bounty2",
"pallets/court",
"pallets/donate",
"pallets/drip",
"pallets/grant",
"pallets/insurance",
"pallets/kickback",
"pallets/moloch",
"pallets/org",
"pallets/rank",
"pallets/rfp",
"pallets/recovery",
"pallets/treasury",
"pallets/vote",
"pallets/vote-direct",
"utils",
]
[patch.crates-io]
frame-executive = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
frame-metadata = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
frame-support = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
frame-system = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
pallet-aura = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
pallet-balances = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
pallet-grandpa = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
pallet-im-online = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
pallet-indices = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
pallet-randomness-collective-flip = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
pallet-staking = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
pallet-timestamp = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
pallet-transaction-payment = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
sc-basic-authorship = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
sc-cli = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
sc-client-api = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
sc-client-db = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
sc-consensus = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
sc-consensus-aura = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
sc-executor = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
sc-finality-grandpa = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
sc-informant = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
sc-network = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
sc-rpc-api = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
sc-service = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
sc-transaction-pool = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
sp-api = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
sp-application-crypto = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
sp-authority-discovery = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
sp-block-builder = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
sp-consensus = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
sp-consensus-aura = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
sp-consensus-babe = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
sp-core = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
sp-database = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
sp-finality-grandpa = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
sp-inherents = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
sp-io = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
sp-keyring = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
sp-offchain = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
sp-rpc = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
sp-runtime = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
sp-session = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
sp-std = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
sp-transaction-pool = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
sp-trie = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
sp-version = { git = "https://github.com/dvc94ch/substrate", branch = "dvc-bitswap" }
substrate-subxt = { git = "https://github.com/paritytech/substrate-subxt" }