Skip to content

Commit 6f9d74c

Browse files
committed
fix
1 parent bb20b52 commit 6f9d74c

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

asset-registry/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ polkadot-runtime-common = { workspace = true, features = ["std"] }
5151
xcm-simulator = { workspace = true }
5252

5353
# orml
54-
orml-tokens = { path = "../tokens", version = "0.5.0-dev" }
55-
orml-xcm = { path = "../xcm", version = "0.5.0-dev" }
56-
orml-xcm-support = { path = "../xcm-support", version = "0.5.0-dev", default-features = false }
57-
orml-xtokens = { path = "../xtokens", version = "0.5.0-dev" }
54+
orml-tokens = { path = "../tokens" }
55+
orml-xcm = { path = "../xcm" }
56+
orml-xcm-support = { path = "../xcm-support", default-features = false }
57+
orml-xtokens = { path = "../xtokens" }
5858

5959
[features]
6060
default = [ "std" ]

currencies/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ orml-utilities = { path = "../utilities", version = "0.5.0-dev", default-feature
2525
pallet-balances = { workspace = true, features = ["std"] }
2626
sp-core = { workspace = true, features = ["std"] }
2727

28-
orml_tokens = { package = "orml-tokens", path = "../tokens", version = "0.5.0-dev" }
28+
orml_tokens = { package = "orml-tokens", path = "../tokens" }
2929

3030
[features]
3131
default = [ "std" ]

payments/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ serde = "1.0.136"
2727
sp-core = { workspace = true }
2828
sp-io = { workspace = true }
2929

30-
orml-tokens = { path = "../tokens", version = "0.5.0-dev", default-features = false }
30+
orml-tokens = { path = "../tokens", default-features = false }
3131

3232
[features]
3333
default = [ 'std' ]

xtokens/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ xcm-builder = { workspace = true, features = ["std"] }
5454
xcm-simulator = { workspace = true }
5555

5656
# orml
57-
orml-tokens = { path = "../tokens", version = "0.5.0-dev" }
58-
orml-xcm = { path = "../xcm", version = "0.5.0-dev" }
57+
orml-tokens = { path = "../tokens" }
58+
orml-xcm = { path = "../xcm" }
5959

6060
[features]
6161
default = [ "std" ]

0 commit comments

Comments
 (0)