@@ -3,50 +3,50 @@ name = "orml-asset-registry"
3
3
description = " Registry for (foreign) assets"
4
4
repository = " https://github.com/open-web3-stack/open-runtime-module-library/tree/master/asset-registry"
5
5
license = " Apache-2.0"
6
- version = " 0.4.1 -dev"
6
+ version = " 0.5.0 -dev"
7
7
authors = [" Interlay Ltd, etc" ]
8
8
edition = " 2021"
9
9
10
10
[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 }
15
15
16
16
# 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 }
22
22
23
23
# 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 }
28
28
29
29
# 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 }
31
31
32
32
[dev-dependencies ]
33
33
# 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 " ] }
38
38
39
39
# 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 " ] }
45
45
46
46
# 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 }
50
50
51
51
# orml
52
52
orml-tokens = { path = " ../tokens" }
@@ -59,7 +59,7 @@ default = ["std"]
59
59
std = [
60
60
" serde" ,
61
61
62
- " codec/std" ,
62
+ " parity-scale- codec/std" ,
63
63
" frame-support/std" ,
64
64
" frame-system/std" ,
65
65
" orml-traits/std" ,
0 commit comments