Skip to content

Commit cdcf051

Browse files
fix: return 8.0 as new ones has different WIT syntax (#40)
* return wast 8.0 * remove wast from renovate
1 parent 24c2d06 commit cdcf051

File tree

4 files changed

+10
-22
lines changed

4 files changed

+10
-22
lines changed

.github/renovate.json

+4
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212
"patch"
1313
],
1414
"groupName": "all non-major Rust dependencies"
15+
},
16+
{
17+
"matchPackagePatterns": ["wast"],
18+
"enabled": false
1519
}
1620
]
1721
}

Cargo.lock

+2-20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/it-types/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ it-to-bytes = { path = "../to-bytes/", version = "0.1.0" }
1616
serde = { version = "1.0.152", features = ["derive", "rc"]}
1717

1818
nom = { version = "7.1", optional = true }
19-
wast = { version = "55.0", optional = true }
19+
# do not update wast, new versions expect different wit syntax
20+
wast = { version = "8.0", optional = true }
2021

2122
variant_count = "1.1"
2223

wasmer-it/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ it-lilo = { path = "../crates/it-lilo", version = "0.5.0" }
1414
it-memory-traits = { path = "../crates/it-memory-traits", version = "0.4.0" }
1515

1616
nom = "7.1"
17-
wast = "55.0"
17+
# do not update wast, new versions expect different wit syntax
18+
wast = "8.0"
1819

1920
# `serde` is useful only to simplify the users' life. It is not
2021
# required by WIT itself, is is used to cross the boundary between the

0 commit comments

Comments
 (0)