Skip to content

Tags: WebAssembly/wasp

Tags

v0.0.4

Toggle v0.0.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Allow reading field lists with packed types (#30)

Field lists were parsed correctly for value types (e.g. `(field i32)`),
but not for packed types (e.g. `(field i8)`)

v0.0.3

Toggle v0.0.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add build instructions to README.md (#26)

v0.0.2

Toggle v0.0.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Implement ToText, for converting binary -> text (#21)

v0.0.1

Toggle v0.0.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add support for Win32 (#11)

* Fix circleci build
* Add github actions build
* Split CMakeLists.txt into separate subdirectories
* Remove declaration of std::hash, using <functional> header
* Add operator{==,!=} for comparing At<T> with T
* Fix infinite loop in WriteVarIntLoop (cast to u8)
* Use data accessor instead of begin()/end() to get char*
* Some integer cast fixes
* Add text::Write{Nat,Int,Float}, to fix overloading issues
* Use CTest for running each unittest executable
* Only include -lstdc++fs if necessary
* Copy gdtoa library into source tree; modify to compile w/ MSVC
* Fix warning when using -2147483648 literal
* Use gtest_force_shared_crt to prevent CRT mismatch