Skip to content

Commit 9a53900

Browse files
Bump wit-bindgen from 0.50.0 to 0.52.0 (#44)
* Bump wit-bindgen from 0.50.0 to 0.52.0 Bumps [wit-bindgen](https://github.com/bytecodealliance/wit-bindgen) from 0.50.0 to 0.52.0. - [Release notes](https://github.com/bytecodealliance/wit-bindgen/releases) - [Commits](bytecodealliance/wit-bindgen@v0.50.0...v0.52.0) --- updated-dependencies: - dependency-name: wit-bindgen dependency-version: 0.52.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Escape map keyword in wit emitted by wkg Signed-off-by: Scott Andrews <scott@andrews.me> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Scott Andrews <scott@andrews.me> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Scott Andrews <scott@andrews.me>
1 parent 0516498 commit 9a53900

File tree

4 files changed

+22
-20
lines changed

4 files changed

+22
-20
lines changed

Cargo.lock

Lines changed: 18 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ exclude = [
88
]
99

1010
[workspace.dependencies]
11-
wit-bindgen = "0.50.0"
11+
wit-bindgen = "0.52.0"

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,8 @@ wit/deps: wkg.toml $(shell find wit -type f -name "*.wit" -not -path "deps")
7171

7272
components/wit/deps: wit/deps components/wkg.toml $(shell find components/wit -type f -name "*.wit" -not -path "deps")
7373
(cd components && wkg wit fetch)
74+
# TODO remove once wkg consumes wit-component 0.245
75+
perl -pi -e 's/ map\(/ %map\(/g' components/wit/deps/componentized-valkey/package.wit
7476

7577
.PHONY: test
7678
test:

components/wit/deps/componentized-valkey/package.wit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ interface resp {
1919
big-number(string),
2020
bulk-error(string),
2121
verbatim-string(tuple<string, string>),
22-
map(list<tuple<nested-value, nested-value>>),
22+
%map(list<tuple<nested-value, nested-value>>),
2323
set(list<nested-value>),
2424
push(list<nested-value>),
2525
}

0 commit comments

Comments
 (0)