Skip to content

Commit d384a53

Browse files
committed
wip update mapped assets
1 parent 9dfef1d commit d384a53

File tree

11 files changed

+1631
-1557
lines changed

11 files changed

+1631
-1557
lines changed

pallets/mapped-assets/Cargo.toml

Lines changed: 8 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["Parity Technologies <[email protected]>"]
55
edition = "2021"
66
license = "Apache-2.0"
77
homepage = "https://substrate.io"
8-
repository = "https://github.com/paritytech/substrate/"
8+
repository = "https://github.com/hashed-io/hashed-pallets"
99
description = "FRAME asset management pallet"
1010
readme = "README.md"
1111

@@ -26,10 +26,10 @@ frame-support = { git = "https://github.com/paritytech/substrate", branch = "pol
2626
# `system` module provides us with all sorts of useful stuff and macros depend on it being around.
2727
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0", default-features = false }
2828
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0", default-features = false, optional = true }
29+
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0", default-features = false }
2930
pallet-rbac = { default-features = false, version = "4.0.0-dev", path = "../rbac/" }
3031

3132
[dev-dependencies]
32-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0", default-features = false }
3333
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0", default-features = false }
3434
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0", default-features = false }
3535
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v1.0.0" }
@@ -38,27 +38,17 @@ pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "p
3838
default = ["std"]
3939
std = [
4040
"codec/std",
41-
"frame-benchmarking?/std",
42-
"frame-support/std",
43-
"frame-system/std",
44-
"log/std",
45-
"pallet-balances/std",
4641
"scale-info/std",
4742
"sp-core/std",
48-
"sp-io/std",
49-
"sp-runtime/std",
5043
"sp-std/std",
44+
"sp-runtime/std",
45+
"frame-support/std",
46+
"frame-system/std",
47+
"frame-benchmarking?/std",
5148
]
5249
runtime-benchmarks = [
5350
"frame-benchmarking/runtime-benchmarks",
54-
"frame-support/runtime-benchmarks",
55-
"frame-system/runtime-benchmarks",
56-
"pallet-balances/runtime-benchmarks",
5751
"sp-runtime/runtime-benchmarks",
52+
"frame-system/runtime-benchmarks",
5853
]
59-
try-runtime = [
60-
"frame-support/try-runtime",
61-
"frame-system/try-runtime",
62-
"pallet-balances/try-runtime",
63-
"sp-runtime/try-runtime",
64-
]
54+
try-runtime = ["frame-support/try-runtime"]

0 commit comments

Comments
 (0)