Browse Source

Switch wasmtime-wasi-http to using Wasmtime's version (#6382)

* Switch wasmtime-wasi-http to using Wasmtime's version

This should use the same versioning scheme as all the other `wasmtime-*`
crates.

* Fixup more directives
pull/6386/head
Alex Crichton 2 years ago
committed by GitHub
parent
commit
53ca155221
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Cargo.lock
  2. 2
      Cargo.toml
  3. 2
      crates/wasi-http/Cargo.toml

2
Cargo.lock

@ -4211,7 +4211,7 @@ dependencies = [
[[package]] [[package]]
name = "wasmtime-wasi-http" name = "wasmtime-wasi-http"
version = "0.0.2" version = "10.0.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"bytes", "bytes",

2
Cargo.toml

@ -169,7 +169,7 @@ cranelift-bforest = { path = "cranelift/bforest", version = "0.97.0" }
cranelift-control = { path = "cranelift/control", version = "0.97.0" } cranelift-control = { path = "cranelift/control", version = "0.97.0" }
cranelift = { path = "cranelift/umbrella", version = "0.97.0" } cranelift = { path = "cranelift/umbrella", version = "0.97.0" }
wasmtime-wasi-http = { path = "crates/wasi-http", version = "=0.0.2" } wasmtime-wasi-http = { path = "crates/wasi-http", version = "=10.0.0" }
winch-codegen = { path = "winch/codegen", version = "=0.8.0" } winch-codegen = { path = "winch/codegen", version = "=0.8.0" }
winch-environ = { path = "winch/environ", version = "=0.8.0" } winch-environ = { path = "winch/environ", version = "=0.8.0" }

2
crates/wasi-http/Cargo.toml

@ -1,6 +1,6 @@
[package] [package]
name = "wasmtime-wasi-http" name = "wasmtime-wasi-http"
version = "0.0.2" version.workspace = true
authors.workspace = true authors.workspace = true
edition.workspace = true edition.workspace = true
repository = "https://github.com/bytecodealliance/wasmtime" repository = "https://github.com/bytecodealliance/wasmtime"

Loading…
Cancel
Save