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

Commit

Permalink
Use crates instead of git (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
ansermino authored Oct 30, 2020
1 parent b7e58b9 commit 06d4b4d
Show file tree
Hide file tree
Showing 4 changed files with 87 additions and 85 deletions.
116 changes: 59 additions & 57 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions chainbridge/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,22 @@ edition = '2018'
[dependencies]
# third-party dependencies
codec = { package = "parity-scale-codec", version = "1.3.4", default-features = false, features = ["derive"] }
serde = { version = "1.0.102", optional = true }
serde = { version = "1.0.101", optional = true }

# primitives
sp-std = { version = "2.0.0", git = "https://github.com/paritytech/substrate.git", default-features = false }
sp-runtime = { version = "2.0.0", git = "https://github.com/paritytech/substrate.git", default-features = false }
sp-io = { version = "2.0.0", git = "https://github.com/paritytech/substrate.git", default-features = false }
sp-core = { version = "2.0.0", git = "https://github.com/paritytech/substrate.git", default-features = false }
sp-std = { version = "2.0.0", default-features = false }
sp-runtime = { version = "2.0.0", default-features = false }
sp-io = { version = "2.0.0", default-features = false }
sp-core = { version = "2.0.0", default-features = false }

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

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

[build-dependencies]
wasm-builder-runner = { version = "2.0.0", package = "substrate-wasm-builder-runner", git = "https://github.com/paritytech/substrate.git" }
wasm-builder-runner = { version = "2.0.0", package = "substrate-wasm-builder-runner"}
[features]
default = ["std"]
std = [
Expand Down
Loading

0 comments on commit 06d4b4d

Please sign in to comment.