rename project and package

nextgraph
Niko PLP 2 weeks ago
parent 13de4e3643
commit 84fcc9e457
  1. 6
      Cargo.toml
  2. 48
      README.md

@ -3,10 +3,10 @@ name = "ng-async-tungstenite"
description = "fork of async-tungstenite for NextGraph.org" description = "fork of async-tungstenite for NextGraph.org"
categories = [] categories = []
keywords = ["websocket", "io", "web", "tokio", "async-std"] keywords = ["websocket", "io", "web", "tokio", "async-std"]
authors = ["Sebastian Dröge <sebastian@centricular.com>"] authors = ["Sebastian Dröge <sebastian@centricular.com>", "Niko PLP <niko@nextgraph.org>"]
license = "MIT" license = "MIT"
homepage = "https://github.com/sdroege/async-tungstenite" homepage = "https://git.nextgraph.org/NextGraph/async-tungstenite"
repository = "https://github.com/sdroege/async-tungstenite" repository = "https://git.nextgraph.org/NextGraph/async-tungstenite"
documentation = "https://docs.rs/async-tungstenite" documentation = "https://docs.rs/async-tungstenite"
version = "0.22.2" version = "0.22.2"
edition = "2018" edition = "2018"

@ -1,4 +1,6 @@
# async-tungstenite # ng-async-tungstenite
fork of https://github.com/sdroege/async-tungstenite for the needs of NextGraph.org
Asynchronous WebSockets for [async-std](https://async.rs), Asynchronous WebSockets for [async-std](https://async.rs),
[tokio](https://tokio.rs), [gio](https://gtk-rs.org) and any `std` [tokio](https://tokio.rs), [gio](https://gtk-rs.org) and any `std`
@ -31,28 +33,28 @@ can use it with non-blocking/asynchronous `TcpStream`s from and couple it
together with other crates from the async stack. In addition, optional together with other crates from the async stack. In addition, optional
integration with various other crates can be enabled via feature flags integration with various other crates can be enabled via feature flags
* `async-tls`: Enables the `async_tls` module, which provides integration - `async-tls`: Enables the `async_tls` module, which provides integration
with the [async-tls](https://crates.io/crates/async-tls) TLS stack and can with the [async-tls](https://crates.io/crates/async-tls) TLS stack and can
be used independent of any async runtime. be used independent of any async runtime.
* `async-std-runtime`: Enables the `async_std` module, which provides - `async-std-runtime`: Enables the `async_std` module, which provides
integration with the [async-std](https://async.rs) runtime. integration with the [async-std](https://async.rs) runtime.
* `async-native-tls`: Enables the additional functions in the `async_std` - `async-native-tls`: Enables the additional functions in the `async_std`
module to implement TLS via module to implement TLS via
[async-native-tls](https://crates.io/crates/async-native-tls). [async-native-tls](https://crates.io/crates/async-native-tls).
* `tokio-runtime`: Enables the `tokio` module, which provides integration - `tokio-runtime`: Enables the `tokio` module, which provides integration
with the [tokio](https://tokio.rs) runtime. with the [tokio](https://tokio.rs) runtime.
* `tokio-native-tls`: Enables the additional functions in the `tokio` module to - `tokio-native-tls`: Enables the additional functions in the `tokio` module to
implement TLS via [tokio-native-tls](https://crates.io/crates/tokio-native-tls). implement TLS via [tokio-native-tls](https://crates.io/crates/tokio-native-tls).
* `tokio-rustls-native-certs`: Enables the additional functions in the `tokio` - `tokio-rustls-native-certs`: Enables the additional functions in the `tokio`
module to implement TLS via [tokio-rustls](https://crates.io/crates/tokio-rustls) module to implement TLS via [tokio-rustls](https://crates.io/crates/tokio-rustls)
and uses native system certificates found with and uses native system certificates found with
[rustls-native-certs](https://github.com/rustls/rustls-native-certs). [rustls-native-certs](https://github.com/rustls/rustls-native-certs).
* `tokio-rustls-webpki-roots`: Enables the additional functions in the `tokio` - `tokio-rustls-webpki-roots`: Enables the additional functions in the `tokio`
module to implement TLS via [tokio-rustls](https://crates.io/crates/tokio-rustls) module to implement TLS via [tokio-rustls](https://crates.io/crates/tokio-rustls)
and uses the certificates [webpki-roots](https://github.com/rustls/webpki-roots) and uses the certificates [webpki-roots](https://github.com/rustls/webpki-roots)
provides. provides.
* `gio-runtime`: Enables the `gio` module, which provides integration with - `gio-runtime`: Enables the `gio` module, which provides integration with
the [gio](https://gtk-rs.org) runtime. the [gio](https://gtk-rs.org) runtime.
## Messages vs Streaming ## Messages vs Streaming

Loading…
Cancel
Save