Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

lower templates version to 0.3.2 for a new release #339

Merged
merged 1 commit into from
Feb 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercon
`slight` relies on a WIT bindings generator [wit-bindgen v0.2.0](https://github.com/bytecodealliance/wit-bindgen), and currently only supports C and Rust applications. We are planning to add more language supports, such as Go and JavaScript/TypeScript.

```sh
slight new -n spidey@v0.3.1 rust && cd spidey
slight new -n spidey@v0.3.2 rust && cd spidey
# ^^^ starts a new rust project under SpiderLightning's v0.1.0 spec
# use: `slight new -n spidey@v0.3.1 c` to start a new c project
# use: `slight new -n spidey@v0.3.2 c` to start a new c project

cargo build --target wasm32-wasi
# ^^^ for c...
Expand Down
2 changes: 1 addition & 1 deletion templates/rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ wit-bindgen-rust = { git = "https://github.com/bytecodealliance/wit-bindgen", ta
# ^^^ A language binding generator for WebAssembly interface types
wit-error-rs = { git = "https://github.com/danbugs/wit-error-rs", rev = "05362f1a4a3a9dc6a1de39195e06d2d5d6491a5e" }
# ^^^ Convenience error-related trait implementations for types generated from a wit-bindgen import
slight-http-handler-macro = { git = "https://github.com/deislabs/spiderlightning", tag = "0.4.0" }
slight-http-handler-macro = { git = "https://github.com/deislabs/spiderlightning", tag = "0.3.2" }
# ^^^ Macro for creating http request handlers when using SpiderLightning's http interface

[workspace]