Skip to content

Commit 0037249

Browse files
committed
Fix conflicts
1 parent 48f794a commit 0037249

File tree

1 file changed

+11
-19
lines changed

1 file changed

+11
-19
lines changed

packages/vm/Cargo.toml

Lines changed: 11 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -10,27 +10,11 @@ license = "Apache-2.0"
1010
[package.metadata.release]
1111
pre-release-hook = ["../../devtools/release_checks.sh"]
1212
pre-release-replacements = [
13-
<<<<<<< HEAD
14-
{ file = "../../CHANGELOG.md", search = "## \\[Unreleased\\]", replace = "## [{{version}}] - {{date}}", exactly = 1 },
15-
{ file = "../../CHANGELOG.md", search = "(U|u)nreleased", replace = "{{version}}" },
16-
{ file = "../../CHANGELOG.md", search = "<!-- next-header -->", replace = "<!-- next-header -->\n\n## [Unreleased]", exactly = 1 },
17-
{ file = "../../CHANGELOG.md", search = "\\.\\.\\.HEAD", replace = "...{{tag_name}}", exactly = 1 },
18-
{ file = "../../CHANGELOG.md", search = "<!-- next-url -->\n", replace = "<!-- next-url -->\n\n[unreleased]: https://github.com/CosmWasm/cosmwasm/compare/{{tag_name}}...HEAD", exactly = 1 },
19-
=======
2013
{ file = "../../CHANGELOG.md", search = "## \\[Unreleased\\]", replace = "## [{{version}}] - {{date}}", exactly = 1 },
2114
{ file = "../../CHANGELOG.md", search = "(U|u)nreleased", replace = "{{version}}" },
2215
{ file = "../../CHANGELOG.md", search = "<!-- next-header -->", replace = "<!-- next-header -->\n\n## [Unreleased]", exactly = 1 },
23-
<<<<<<< HEAD
24-
{ file = "../../CHANGELOG.md", search = "<!-- next-url -->\n", replace = "<!-- next-url -->\n\n[unreleased]: https://github.com/CosmWasm/cosmwasm/compare/{{tag_name}}...HEAD", exactly = 1 },
25-
<<<<<<< HEAD
26-
>>>>>>> 55ee235b (Fix replacement order)
27-
=======
28-
{ file = "../../CHANGELOG.md", search = "\\.\\.\\.HEAD", replace = "...{{tag_name}}", exactly = 1 },
29-
>>>>>>> 38fea3a7 ([autofix.ci] apply automated fixes)
30-
=======
3116
{ file = "../../CHANGELOG.md", search = "\\.\\.\\.HEAD", replace = "...{{tag_name}}", exactly = 1 },
3217
{ file = "../../CHANGELOG.md", search = "<!-- next-url -->\n", replace = "<!-- next-url -->\n\n[unreleased]: https://github.com/CosmWasm/cosmwasm/compare/{{tag_name}}...HEAD", exactly = 1 },
33-
>>>>>>> 961abe68 (Fix replacement order (again))
3418
]
3519

3620
[features]
@@ -59,16 +43,24 @@ clru = "0.6.1"
5943
crc32fast = "1.3.2"
6044
bech32 = "0.9.1"
6145
# Uses the path when built locally; uses the given version from crates.io when published
62-
cosmwasm-std = { path = "../std", version = "2.0.8", default-features = false, features = ["std"] }
46+
cosmwasm-std = { path = "../std", version = "2.0.8", default-features = false, features = [
47+
"std",
48+
] }
6349
cosmwasm-crypto = { path = "../crypto", version = "2.0.8" }
6450
derivative = "2"
6551
hex = "0.4"
6652
schemars = "0.8.3"
67-
serde = { version = "1.0.103", default-features = false, features = ["derive", "alloc"] }
53+
serde = { version = "1.0.103", default-features = false, features = [
54+
"derive",
55+
"alloc",
56+
] }
6857
serde_json = "1.0.40"
6958
sha2 = "0.10.3"
7059
thiserror = "1.0.26"
71-
wasmer = { version = "=4.2.6", default-features = false, features = ["cranelift", "singlepass"] }
60+
wasmer = { version = "=4.2.6", default-features = false, features = [
61+
"cranelift",
62+
"singlepass",
63+
] }
7264
wasmer-middlewares = "=4.2.6"
7365
wasmer-types = "=4.2.6"
7466
strum = { version = "0.25.0", default-features = false, features = ["derive"] }

0 commit comments

Comments
 (0)