changeset 3:0edcde404b02

Added information about MSRV
author Martin Habovstiak <martin.habovstiak@gmail.com>
date Fri, 27 Nov 2020 12:56:37 +0100
parents cabc4aafdd85
children 66c0e10c89fc
files README.md src/lib.rs
diffstat 2 files changed, 11 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/README.md	Fri Nov 27 10:21:07 2020 +0100
+++ b/README.md	Fri Nov 27 12:56:37 2020 +0100
@@ -46,6 +46,11 @@
 * `tokio_0_3` - adds `bind_tokio_0_3` convenience method to `SocketAddr`
 * `async_std` - adds `bind_async_std` convenience method to `SocketAddr`
 
+## MSRV
+
+This crate must always compile with the latest Rust available in the latest Debian stable.
+That is currently Rust 1.41.1. (Debian 10 - Buster)
+
 ## License
 
 MITNFA
--- a/src/lib.rs	Fri Nov 27 10:21:07 2020 +0100
+++ b/src/lib.rs	Fri Nov 27 12:56:37 2020 +0100
@@ -44,6 +44,12 @@
 //! * `tokio_0_2` - adds `bind_tokio_0_2` convenience method to `SocketAddr`
 //! * `tokio_0_3` - adds `bind_tokio_0_3` convenience method to `SocketAddr`
 //! * `async_std` - adds `bind_async_std` convenience method to `SocketAddr`
+//!
+//! ## MSRV
+//!
+//! This crate must always compile with the latest Rust available in the latest Debian stable.
+//! That is currently Rust 1.41.1. (Debian 10 - Buster)
+
 
 #![deny(missing_docs)]