https://github.com/rustls/futures-rustls
https://github.com/rustls/futures-rustls
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/rustls/futures-rustls
- Owner: rustls
- License: apache-2.0
- Created: 2020-12-19T05:26:36.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2025-03-15T02:25:18.000Z (11 months ago)
- Last Synced: 2025-06-08T00:08:38.084Z (8 months ago)
- Language: Rust
- Size: 99.6 KB
- Stars: 16
- Watchers: 4
- Forks: 8
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# futures-rustls
[](https://crates.io/crates/futures-rustls)
[](https://docs.rs/futures-rustls/)
Asynchronous TLS/SSL streams for futures using
[Rustls](https://github.com/rustls/rustls).
### Basic Structure of a Client
```rust
use webpki::DNSNameRef;
use futures_rustls::{ TlsConnector, rustls::ClientConfig };
// ...
let mut config = ClientConfig::new();
config.root_store.add_server_trust_anchors(&webpki_roots::TLS_SERVER_ROOTS);
let config = TlsConnector::from(Arc::new(config));
let dnsname = DNSNameRef::try_from_ascii_str("www.rust-lang.org").unwrap();
let stream = TcpStream::connect(&addr).await?;
let mut stream = config.connect(dnsname, stream).await?;
// ...
```
### License & Origin
This project is licensed under either of
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
http://www.apache.org/licenses/LICENSE-2.0)
* MIT license ([LICENSE-MIT](LICENSE-MIT) or
http://opensource.org/licenses/MIT)
at your option.
This started as a fork of [tokio-rustls](https://github.com/rustls/tokio-rustls).
### Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in futures-rustls by you, as defined in the Apache-2.0 license, shall be
dual licensed as above, without any additional terms or conditions.