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 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
23 changes: 12 additions & 11 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 8 additions & 4 deletions wasi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,23 @@
[package]
name = "wasi"
version = "0.12.0+wasi-snapshot-preview2"
# name = "wasi"
name = "wasi-preview2-prototype"
version = "0.0.1"
# version = "0.12.0+wasi-snapshot-preview2"
description = "Experimental WASI Preview2 API bindings for Rust"
edition.workspace = true
publish = false
publish = true

[dependencies]
wit-bindgen = { workspace = true, features = ["macros", "realloc"] }

# Dependencies for HTTP feature
anyhow = { version = "1.0", optional = true }
bytes = { version = "1.4", optional = true }
http = { version = "0.2", optional = true }

[lib]
crate-type = ["lib"]

[features]
http = ["dep:anyhow", "dep:http"]
default = []
http-client = ["dep:anyhow", "dep:bytes", "dep:http"]
144 changes: 0 additions & 144 deletions wasi/src/http.rs

This file was deleted.

Loading