Skip to content
This repository was archived by the owner on Oct 13, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
c3af8fd
feat: add wasi http experimental
eduardomourar Feb 9, 2023
e707e13
feat: add bindings crate
eduardomourar Feb 10, 2023
c5da583
feat: return monadic type for http request
eduardomourar Feb 12, 2023
6b7faa4
chore: rename main http function to send
eduardomourar Feb 12, 2023
8c6043e
chore: update wit-bindgen in bindings crate
eduardomourar Feb 13, 2023
9dc2233
chore: change http method to enum
eduardomourar Feb 14, 2023
72116e3
chore: remove http status error
eduardomourar Feb 14, 2023
b2382e6
Merge branch 'main' into feat/wasi-http-experimental
eduardomourar Feb 19, 2023
bae5545
feat: use new wasi-http wit definition
eduardomourar Feb 23, 2023
922f4a7
Merge remote-tracking branch 'origin/main' into feat/wasi-http-experi…
eduardomourar Feb 23, 2023
dd74ffc
Merge remote-tracking branch 'origin/main' into feat/wasi-http-experi…
eduardomourar Mar 13, 2023
1e38e23
chore: add basic scaffolding for wasi http
eduardomourar Mar 14, 2023
e8cbfcd
Merge remote-tracking branch 'origin/main' into feat/wasi-http-experi…
eduardomourar Mar 14, 2023
0bb1f0e
chore: revert rename for http types
eduardomourar Mar 17, 2023
533894a
chore: changes based on review feedback
eduardomourar Mar 17, 2023
0933bc4
chore: add modules to verify
eduardomourar Mar 17, 2023
09b0c8d
chore: include features wasi bindings
eduardomourar Mar 17, 2023
7f41229
chore: update lock file
eduardomourar Mar 17, 2023
bce17d1
chore: fix formatting
eduardomourar Mar 17, 2023
cdac89d
chore: fix casing for http imported names
eduardomourar Mar 17, 2023
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
Prev Previous commit
Next Next commit
Merge branch 'main' into feat/wasi-http-experimental
  • Loading branch information
eduardomourar authored Feb 19, 2023
commit b2382e692bbee7ce189dd23777e76e45abd723b3
1 change: 1 addition & 0 deletions host/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ pub fn add_to_linker<T: Send>(
wasi_random::add_to_linker(l, f)?;
wasi_tcp::add_to_linker(l, f)?;
wasi_exit::add_to_linker(l, f)?;
wasi_environment::add_to_linker(l, f)?;
#[cfg(feature = "http")]
wasi_http::add_to_linker(l, f)?;
Ok(())
Expand Down
1 change: 1 addition & 0 deletions wit/wasi-command.wit
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ default world wasi-command {
import wasi-ip: pkg.wasi-ip
import wasi-dns: pkg.wasi-dns
import wasi-exit: pkg.wasi-exit
import wasi-environment: pkg.wasi-environment
import wasi-http: pkg.wasi-http

export command: func(
Expand Down
1 change: 1 addition & 0 deletions wit/wasi.wit
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@ default world wasi {
import wasi-ip: pkg.wasi-ip
import wasi-dns: pkg.wasi-dns
import wasi-exit: pkg.wasi-exit
import wasi-environment: pkg.wasi-environment
import wasi-http: pkg.wasi-http
}
You are viewing a condensed version of this merge commit. You can view the full changes here.