Skip to content
This repository was archived by the owner on Jan 6, 2024. It is now read-only.

Commit 5f51292

Browse files
committed
Deprecate in favor of futures-rustls
1 parent affe6ec commit 5f51292

File tree

5 files changed

+13
-3
lines changed

5 files changed

+13
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ env:
1717
CARGO_NET_RETRY: 10
1818
CARGO_TERM_COLOR: always
1919
RUST_BACKTRACE: 1
20-
RUSTFLAGS: -D warnings
20+
RUSTFLAGS: -D warnings -A deprecated
2121
RUSTDOCFLAGS: -D warnings
2222
RUSTUP_MAX_RETRIES: 10
2323

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Version 0.4.2
2+
3+
- This crate is now deprecated in favor of [futures-rustls](https://crates.io/crates/futures-rustls).
4+
15
# Version 0.4.1
26

37
- Add `smol-rs` logo to docs. (#23)

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "async-rustls"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
authors = [
55
"Alex Crichton <[email protected]>",
66
"quininer kel <[email protected]>",

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# async-rustls
1+
# async-rustls (deprecated)
22

33
[![Build](https://github.com/smol-rs/async-rustls/workflows/Build%20and%20test/badge.svg)](
44
https://github.com/smol-rs/async-rustls/actions)
@@ -9,6 +9,8 @@ https://crates.io/crates/async-rustls)
99
[![Documentation](https://docs.rs/async-rustls/badge.svg)](
1010
https://docs.rs/async-rustls)
1111

12+
**This crate is now deprecated in favor of [futures-rustls](https://crates.io/crates/futures-rustls).**
13+
1214
Asynchronous TLS/SSL streams using [`rustls`].
1315

1416
[`rustls`]: https://docs.rs/rustls

src/lib.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66
#![doc(
77
html_logo_url = "https://raw.githubusercontent.com/smol-rs/smol/master/assets/images/logo_fullsize_transparent.png"
88
)]
9+
#![deprecated(
10+
since = "0.4.2",
11+
note = "This crate is now deprecated in favor of [futures-rustls](https://crates.io/crates/futures-rustls)."
12+
)]
913

1014
macro_rules! ready {
1115
( $e:expr ) => {

0 commit comments

Comments
 (0)