# HG changeset patch # User Martin Habovstiak # Date 1606478197 -3600 # Node ID 0edcde404b02a19775490a4e522b12f583cfcc5b # Parent cabc4aafdd8546ac849ea273577da6920377722b Added information about MSRV diff -r cabc4aafdd85 -r 0edcde404b02 README.md --- 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 diff -r cabc4aafdd85 -r 0edcde404b02 src/lib.rs --- 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)]