forked from sunshine-protocol/sunshine-keybase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
72 lines (67 loc) · 4.52 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
[workspace]
members = [
"bin/cli",
"bin/client",
"bin/node",
"bin/runtime",
"chain/client",
"chain/pallet",
"faucet/cli",
"faucet/client",
"faucet/ffi",
"faucet/pallet",
"identity/cli",
"identity/client",
"identity/ffi",
"identity/pallet",
"identity/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" }