diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a231838..1385f5f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -155,6 +155,10 @@ ## `net` +### Version "0.6.0" + +- Update http crate to 1.0 (#407) + ### Version "0.5.0" - Implement `futures_io::AsyncWrite` and `futures_io::AsyncRead` on `WebSocket`. diff --git a/Cargo.lock b/Cargo.lock index 36e0978e..114c8d0b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -453,7 +453,7 @@ dependencies = [ "gloo-dialogs 0.2.0", "gloo-events 0.2.0", "gloo-file 0.3.0", - "gloo-history 0.2.1", + "gloo-history 0.2.2", "gloo-net 0.5.0", "gloo-render 0.2.0", "gloo-storage 0.3.0", @@ -573,7 +573,7 @@ dependencies = [ [[package]] name = "gloo-history" -version = "0.2.1" +version = "0.2.2" dependencies = [ "getrandom", "gloo-events 0.2.0", @@ -619,7 +619,7 @@ dependencies = [ "futures-io", "futures-sink", "gloo-utils 0.2.0", - "http", + "http 1.0.0", "js-sys", "once_cell", "pin-project", diff --git a/crates/net/Cargo.toml b/crates/net/Cargo.toml index f7f9e395..73681ee5 100644 --- a/crates/net/Cargo.toml +++ b/crates/net/Cargo.toml @@ -36,7 +36,7 @@ serde_json = { version = "1.0", optional = true } futures-channel = { version = "0.3", optional = true } pin-project = { version = "1.0", optional = true } -http = "0.2.9" +http = "1.0" [dev-dependencies] wasm-bindgen-test = "0.3"