Skip to content
This repository was archived by the owner on Jul 12, 2022. It is now read-only.

Commit 06d4b4d

Browse files
authored
Use crates instead of git (#69)
1 parent b7e58b9 commit 06d4b4d

File tree

4 files changed

+87
-85
lines changed

4 files changed

+87
-85
lines changed

Cargo.lock

+59-57
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

chainbridge/Cargo.toml

+9-9
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,22 @@ edition = '2018'
77
[dependencies]
88
# third-party dependencies
99
codec = { package = "parity-scale-codec", version = "1.3.4", default-features = false, features = ["derive"] }
10-
serde = { version = "1.0.102", optional = true }
10+
serde = { version = "1.0.101", optional = true }
1111

1212
# primitives
13-
sp-std = { version = "2.0.0", git = "https://github.com/paritytech/substrate.git", default-features = false }
14-
sp-runtime = { version = "2.0.0", git = "https://github.com/paritytech/substrate.git", default-features = false }
15-
sp-io = { version = "2.0.0", git = "https://github.com/paritytech/substrate.git", default-features = false }
16-
sp-core = { version = "2.0.0", git = "https://github.com/paritytech/substrate.git", default-features = false }
13+
sp-std = { version = "2.0.0", default-features = false }
14+
sp-runtime = { version = "2.0.0", default-features = false }
15+
sp-io = { version = "2.0.0", default-features = false }
16+
sp-core = { version = "2.0.0", default-features = false }
1717

1818
# frame dependencies
19-
frame-support = { version = "2.0.0", git = "https://github.com/paritytech/substrate.git", default-features = false }
20-
frame-system = { version = "2.0.0", git = "https://github.com/paritytech/substrate.git", default-features = false }
19+
frame-support = { version = "2.0.0", default-features = false }
20+
frame-system = { version = "2.0.0", default-features = false }
2121

22-
pallet-balances = { version = "2.0.0", git = "https://github.com/paritytech/substrate.git", default-features = false }
22+
pallet-balances = { version = "2.0.0", default-features = false }
2323

2424
[build-dependencies]
25-
wasm-builder-runner = { version = "2.0.0", package = "substrate-wasm-builder-runner", git = "https://github.com/paritytech/substrate.git" }
25+
wasm-builder-runner = { version = "2.0.0", package = "substrate-wasm-builder-runner"}
2626
[features]
2727
default = ["std"]
2828
std = [

0 commit comments

Comments
 (0)