Cargo.toml 775 Bytes
Newer Older
1
[package]
2
name = "test-parachain-adder-collator"
3
4
version = "0.1.0"
authors = ["Parity Technologies <admin@parity.io>"]
5
edition = "2018"
6
7

[dependencies]
8
9
10
11
adder = { package = "test-parachain-adder", path = ".." }
parachain = { package = "polkadot-parachain", path = "../../.." }
collator = { package = "polkadot-collator", path = "../../../../collator" }
primitives = { package = "polkadot-primitives", path = "../../../../primitives" }
Tomasz Drwięga's avatar
Tomasz Drwięga committed
12
13
sp-core = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
client-api = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
14
parking_lot = "0.10.0"
Gavin Wood's avatar
Gavin Wood committed
15
codec = { package = "parity-scale-codec", version = "1.2.0" }
Gavin Wood's avatar
Gavin Wood committed
16
futures = "0.3.4"