Skip to content

Commit

Permalink
Release 0.6.1 (#197)
Browse files Browse the repository at this point in the history
* add blog post for gloo-net

* 0.6.1
  • Loading branch information
ranile committed Mar 11, 2022
1 parent 07ad0fc commit 3b86d81
Show file tree
Hide file tree
Showing 4 changed files with 5,527 additions and 8,057 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2018"
license = "MIT/Apache-2.0"
name = "gloo"
readme = "README.md"
version = "0.6.0"
version = "0.6.1"
repository = "https://github.com/rustwasm/gloo"
homepage = "https://gloo-rs.web.app/"
documentation = "https://docs.rs/gloo/"
Expand All @@ -22,7 +22,7 @@ gloo-console = { version = "0.2.1", path = "crates/console" }
gloo-utils = { version = "0.1.1", path = "crates/utils" }
gloo-history = { version = "0.1.0", path = "crates/history" }
gloo-worker = { version = "0.1.0", path = "crates/worker" }
gloo-net = { path = "crates/net" }
gloo-net = { version = "0.1.0", path = "crates/net" }

[features]
default = []
Expand Down
25 changes: 25 additions & 0 deletions website/blog/2022-3-11-new-net-crate.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
slug: release-gloo-net
title: Gloo gets a new crate: gloo-net
author: Muhammad Hamza
author_title: Maintainer of Gloo
author_url: https://github.com/hamza1311
author_image_url: https://avatars.githubusercontent.com/u/47357913?v=4
tags: [release]
---

The Gloo team is happy to announce a new addition to the Gloo crates family: `gloo-net`. It is an HTTP requests
library built specially for WASM apps and provides idiomatic Rust bindings for the `fetch` and `WebSocket` API.
This has been a long requested library, and it has finally arrived.

## Features

- HTTP: complete wrappers around the browser's `fetch` API.
- WebSocket: complete wrappers around the browser's `WebSocket` API using Rust futures.

We have plans to also provide wrapper for `XMLHttpRequest` in the future.

## Looking for contributors

Gloo project is in need of contributors. It would be really appreciated if you could contribute or raise awareness about
the Gloo project.
Loading

0 comments on commit 3b86d81

Please sign in to comment.