@@ -3,50 +3,50 @@ name = "orml-asset-registry"
33description = " Registry for (foreign) assets"
44repository = " https://github.com/open-web3-stack/open-runtime-module-library/tree/master/asset-registry"
55license = " Apache-2.0"
6- version = " 0.4.1 -dev"
6+ version = " 0.5.0 -dev"
77authors = [" Interlay Ltd, etc" ]
88edition = " 2021"
99
1010[dependencies ]
11- log = { version = " 0.4.20 " , default-features = false }
12- scale-info = { version = " 2.9.0 " , default-features = false , features = [ " derive " ] }
13- serde = { version = " 1.0.136 " , optional = true }
14- codec = { package = " parity-scale-codec" , version = " 3.0.0 " , default-features = false , features = [ " max-encoded-len " ] }
11+ log = { workspace = true }
12+ scale-info = { workspace = true }
13+ serde = { workspace = true , optional = true }
14+ parity-scale-codec = { workspace = true }
1515
1616# substrate
17- frame-support = { git = " https://github.com/paritytech/polkadot-sdk " , default-features = false , branch = " release-polkadot-v1.1.0 " }
18- frame-system = { git = " https://github.com/paritytech/polkadot-sdk " , default-features = false , branch = " release-polkadot-v1.1.0 " }
19- sp-io = { git = " https://github.com/paritytech/polkadot-sdk " , default-features = false , branch = " release-polkadot-v1.1.0 " }
20- sp-runtime = { git = " https://github.com/paritytech/polkadot-sdk " , default-features = false , branch = " release-polkadot-v1.1.0 " }
21- sp-std = { git = " https://github.com/paritytech/polkadot-sdk " , default-features = false , branch = " release-polkadot-v1.1.0 " }
17+ frame-support = { workspace = true }
18+ frame-system = { workspace = true }
19+ sp-io = { workspace = true }
20+ sp-runtime = { workspace = true }
21+ sp-std = { workspace = true }
2222
2323# polkadot
24- pallet-xcm = { git = " https://github.com/paritytech/polkadot-sdk " , default-features = false , branch = " release-polkadot-v1.1.0 " }
25- xcm = { package = " staging-xcm " , git = " https://github.com/paritytech/polkadot-sdk " , default-features = false , branch = " release-polkadot-v1.1.0 " }
26- xcm-builder = { package = " staging-xcm-builder " , git = " https://github.com/paritytech/polkadot-sdk " , default-features = false , branch = " release-polkadot-v1.1.0 " }
27- xcm-executor = { package = " staging-xcm-executor " , git = " https://github.com/paritytech/polkadot-sdk " , default-features = false , branch = " release-polkadot-v1.1.0 " }
24+ pallet-xcm = { workspace = true }
25+ xcm = { workspace = true }
26+ xcm-builder = { workspace = true }
27+ xcm-executor = { workspace = true }
2828
2929# orml
30- orml-traits = { path = " ../traits" , version = " 0.4.1 -dev" , default-features = false }
30+ orml-traits = { path = " ../traits" , version = " 0.5.0 -dev" , default-features = false }
3131
3232[dev-dependencies ]
3333# substrate
34- pallet-balances = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release-polkadot-v1.1.0 " }
35- sp-core = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release-polkadot-v1.1.0 " }
36- sp-io = { git = " https://github.com/paritytech/polkadot-sdk " , default- features = false , branch = " release-polkadot-v1.1.0 " }
37- pallet-message-queue = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release-polkadot-v1.1.0 " }
34+ pallet-balances = { workspace = true , features = [ " std " ] }
35+ sp-core = { workspace = true , features = [ " std " ] }
36+ sp-io = { workspace = true , features = [ " std " ] }
37+ pallet-message-queue = { workspace = true , features = [ " std " ] }
3838
3939# cumulus
40- cumulus-primitives-core = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release-polkadot-v1.1.0 " }
41- cumulus-pallet-dmp-queue = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release-polkadot-v1.1.0 " }
42- cumulus-pallet-xcmp-queue = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release-polkadot-v1.1.0 " }
43- cumulus-pallet-xcm = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release-polkadot-v1.1.0 " }
44- parachain-info = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release-polkadot-v1.1.0 " }
40+ cumulus-primitives-core = { workspace = true , features = [ " std " ] }
41+ cumulus-pallet-dmp-queue = { workspace = true , features = [ " std " ] }
42+ cumulus-pallet-xcmp-queue = { workspace = true , features = [ " std " ] }
43+ cumulus-pallet-xcm = { workspace = true , features = [ " std " ] }
44+ parachain-info = { workspace = true , features = [ " std " ] }
4545
4646# polkadot
47- polkadot-parachain = { package = " polkadot-parachain-primitives " , git = " https://github.com/paritytech/polkadot-sdk " , branch = " release-polkadot-v1.1.0 " }
48- polkadot-runtime-parachains = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release-polkadot-v1.1.0 " }
49- xcm-simulator = { git = " https://github.com/paritytech/polkadot-sdk " , branch = " release-polkadot-v1.1.0 " }
47+ polkadot-parachain-primitives = { workspace = true , features = [ " std " ] }
48+ polkadot-runtime-parachains = { workspace = true , features = [ " std " ] }
49+ xcm-simulator = { workspace = true }
5050
5151# orml
5252orml-tokens = { path = " ../tokens" }
@@ -59,7 +59,7 @@ default = ["std"]
5959std = [
6060 " serde" ,
6161
62- " codec/std" ,
62+ " parity-scale- codec/std" ,
6363 " frame-support/std" ,
6464 " frame-system/std" ,
6565 " orml-traits/std" ,
0 commit comments