Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
320349b
Update JS integer lowering
Liamolucko Jun 22, 2022
345c453
Make `Docs::contents` `None` for regular comments. (#255)
Liamolucko Jun 22, 2022
32473ad
Don't create unnecessary unsafe block inside unsafe fn in generated R…
Liamolucko Jun 22, 2022
2b86ad0
Update JS float lowering (#258)
Liamolucko Jun 22, 2022
32cd6da
chore: update to latest wasmtime release (0.38.0) (#261)
dicej Jun 27, 2022
fce4b52
Implement `std::fmt::Write` for `Source` (#267)
Liamolucko Jun 30, 2022
206263e
Implement parsing for the `future` type. (#269)
sunfishcode Jul 1, 2022
ea71cad
Generate impls for `core` traits rather than `std` (#271)
tsoutsman Jul 7, 2022
3780adc
Disambiguate `wit-component` `-i` flag (#275)
tsoutsman Jul 8, 2022
7b7625a
docs: update wit.md according current parser impl (#277)
7sDream Jul 11, 2022
2679e06
Escape the full list of Rust keywords when converting identifiers (#278)
Liamolucko Jul 11, 2022
128fd67
Ignore clippy warnings in generated code (#279)
7sDream Jul 12, 2022
9760e06
Remove duplicate definition of identifiers from WIT.md (#276)
Liamolucko Jul 12, 2022
d31c4e3
Implement syntax support for resource subtyping. (#280)
sunfishcode Jul 13, 2022
60e3c5b
wit-component: clean up type exports. (#281)
Jul 15, 2022
0e30d8c
Fix some minor bugs in the WIT parser (#284)
Liamolucko Jul 19, 2022
005a9e6
Implement support for `future` and `stream` in a few utility methods.…
sunfishcode Jul 20, 2022
83b26dd
wit-bindgen-rust: use derived name for return area type. (#294)
Aug 1, 2022
b40adda
wit-component: emit function type encodings first. (#295)
Aug 3, 2022
f7f95ba
wit-bindgen-rust: fix lowering and lifting of zero-length lists. (#296)
Aug 4, 2022
0ab80ae
chore: update to wasmtime 0.39.1 (#300)
philpax Aug 9, 2022
cb871cf
Bump version to 0.2.0 (#302)
esoterra Aug 18, 2022
01c8935
Derive Clone and PartialEq for wit_parser::Interface (#304)
Aug 19, 2022
a4a138b
Reorganize folder structure (#301)
esoterra Aug 24, 2022
ef569f1
Merge branch 'js-ints' of https://github.com/Liamolucko/wit-bindgen i…
alexcrichton Sep 1, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devcontainer/finalize.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ pip install mypy wasmtime

# Install NPM dependencies
printf "Installing NPM Dependencies"
cd crates/gen-js && npm install
cd crates/gen-host-js && npm install
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
node-version: '16'
- name: Install NPM packages
run: npm install
working-directory: crates/gen-js
working-directory: crates/gen-host-js
- uses: actions/setup-python@v1
with:
python-version: 3.9
Expand Down
Loading