Skip to content

Commit

Permalink
Merge pull request #153 from galacticcouncil/fix-duster-deps
Browse files Browse the repository at this point in the history
fix: duster dependencies
  • Loading branch information
mrq1911 authored Sep 3, 2021
2 parents 55f8e7d + c09cc6e commit f4e23da
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 13 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,11 @@ jobs:
uses: codecov/codecov-action@v1
with:
fail_ci_if_error: true
- name: Build release
run: time cargo build --release --quiet --locked
- name: Build runtime
run: cargo build --release --locked
working-directory: runtime
- name: Build node
run: cargo build --release --locked
- name: Version info
run: ./target/release/basilisk --version
- name: Upload release binary
Expand Down
16 changes: 5 additions & 11 deletions pallets/duster/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ frame-system-benchmarking = { git = "/~https://github.com/paritytech/substrate", b
frame-benchmarking = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false, optional = true }

[dev-dependencies]
sp-io = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }
orml-currencies = { git = "/~https://github.com/open-web3-stack/open-runtime-module-library", rev = "8d5432c3458702a7df14b374bddde43a2a20aa43", default-features = false }
orml-tokens = { git = "/~https://github.com/open-web3-stack/open-runtime-module-library", rev = "8d5432c3458702a7df14b374bddde43a2a20aa43", default-features = false }
primitives = { path = "../../primitives", default-features = false }
lazy_static = { features = ["spin_no_std"], version = "1.4.0" }
sp-core = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }
primitives = { path = "../../primitives", default-features = false }
sp-io = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }
sp-runtime = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }
sp-core = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }
pallet-balances = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", default-features = false }
orml-currencies = { git = "/~https://github.com/open-web3-stack/open-runtime-module-library", rev = "8d5432c3458702a7df14b374bddde43a2a20aa43", default-features = false }
orml-tokens = { git = "/~https://github.com/open-web3-stack/open-runtime-module-library", rev = "8d5432c3458702a7df14b374bddde43a2a20aa43", default-features = false }

[features]
default = ["std"]
Expand All @@ -52,12 +52,6 @@ std = [
"codec/std",
"frame-support/std",
"frame-system/std",
"sp-runtime/std",
"sp-core/std",
"sp-std/std",
"orml-tokens/std",
"orml-traits/std",
"primitives/std",
"lazy_static/spin_no_std",
"pallet-balances/std",
]

0 comments on commit f4e23da

Please sign in to comment.