-
Notifications
You must be signed in to change notification settings - Fork 131
/
Copy pathCargo.toml
69 lines (63 loc) · 2.21 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
[package]
name = "substrate-relay"
version = "1.8.2"
authors.workspace = true
edition.workspace = true
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
repository.workspace = true
[lints]
workspace = true
[dependencies]
anyhow = { workspace = true }
async-std = { workspace = true }
async-trait = { workspace = true }
clap = { workspace = true }
codec = { workspace = true }
env_logger = { workspace = true }
futures = { workspace = true }
hex = { workspace = true }
log = { workspace = true }
num-format = { workspace = true }
num-traits = { workspace = true }
rbtag = { workspace = true }
signal-hook = { workspace = true }
signal-hook-async-std = { workspace = true }
strum = { workspace = true }
# Bridge dependencies
bp-bridge-hub-polkadot = { workspace = true }
bp-bridge-hub-rococo = { workspace = true }
bp-header-chain = { workspace = true }
bp-messages = { workspace = true }
bp-parachains = { workspace = true }
bp-polkadot-bulletin = { workspace = true }
bp-polkadot = { workspace = true }
bp-polkadot-core = { workspace = true }
bp-rococo = { workspace = true }
bp-runtime = { workspace = true }
bridge-runtime-common = { workspace = true }
pallet-bridge-parachains = { workspace = true }
parachains-relay = { workspace = true }
relay-asset-hub-rococo-client = { workspace = true }
relay-asset-hub-westend-client = { workspace = true }
relay-bridge-hub-kusama-client = { workspace = true }
relay-bridge-hub-polkadot-client = { workspace = true }
relay-bridge-hub-rococo-client = { workspace = true }
relay-bridge-hub-westend-client = { workspace = true }
relay-kusama-client = { workspace = true }
relay-polkadot-client = { workspace = true }
relay-polkadot-bulletin-client = { workspace = true }
relay-rococo-client = { workspace = true }
relay-substrate-client = { workspace = true }
relay-utils = { workspace = true }
relay-westend-client = { workspace = true }
substrate-relay-helper = { workspace = true }
# Substrate Dependencies
frame-support = { workspace = true }
sp-core = { workspace = true }
sp-runtime = { workspace = true }
[dev-dependencies]
bp-test-utils = { workspace = true }
hex-literal = { workspace = true }
sp-keyring = { workspace = true }
tempfile = { workspace = true }
finality-grandpa = { workspace = true }