-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (35 loc) · 2.12 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
[package]
edition = "2021"
name = "laguna-cli"
version = "0.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.58"
async-std = {version = "1.12.0", features = ["attributes", "tokio1"]}
clap = "3.2.8"
color-eyre = "0.6.1"
jsonrpsee = {version = "=0.14.0", features = ["async-client"], package = "jsonrpsee"}
laguna-runtime = {branch = "main", git = "ssh://[email protected]/Laguna-Chain/laguna-chain.git"}
pallet-contracts-primitives = {git = 'https://github.com/Laguna-Chain/substrate.git', branch = "laguna-cli-fixes-polkadot-v0.9.22"}
pallet-contracts-rpc = {git = 'https://github.com/Laguna-Chain/substrate.git', branch = "laguna-cli-fixes-polkadot-v0.9.22"}
old-sp-core = {git = 'https://github.com/paritytech//substrate.git', branch = "polkadot-v0.9.22", package = "sp-rpc"}
old-sp-rpc = {git = 'https://github.com/paritytech//substrate.git', branch = "polkadot-v0.9.22", package = "sp-rpc"}
old-sp-runtime = {git = 'https://github.com/paritytech//substrate.git', branch = "polkadot-v0.9.22", package = "sp-runtime"}
primitives = {version = "0.1.0", path = "../laguna-chain/primitives"}
codec = {version = "3.1.5", package = "parity-scale-codec"}
runtime = {version = "0.1.0", path = "runtime"}
subxt = {version = "0.22.0"}
[workspace]
members = [
"runtime",
]
[patch."https://github.com/Laguna-Chain/substrate.git"]
sp-core = {git = 'https://github.com/paritytech/substrate.git', branch = "polkadot-v0.9.22"}
sp-externalities = {git = 'https://github.com/paritytech/substrate.git', branch = "polkadot-v0.9.22"}
sp-io = {git = 'https://github.com/paritytech/substrate.git', branch = "polkadot-v0.9.22"}
# replace an transient dependnecy using double // to complicate the url
sp-rpc = {git = 'https://github.com/paritytech//substrate.git', branch = "polkadot-v0.9.22"}
sp-runtime = {git = 'https://github.com/paritytech//substrate.git', branch = "polkadot-v0.9.22"}
[patch.crates-io]
# sp-core = {git = 'https://github.com/paritytech/substrate.git', branch = "polkadot-v0.9.22"}
# sp-runtime = {git = 'https://github.com/paritytech/substrate.git', branch = "polkadot-v0.9.22"}