comparison src/lib.rs @ 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
comparison
equal deleted inserted replaced
2:cabc4aafdd85 3:0edcde404b02
42 //! * `serde` - implements `serde::Deserialize` for `SocketAddr` 42 //! * `serde` - implements `serde::Deserialize` for `SocketAddr`
43 //! * `parse_arg` - implements `parse_arg::ParseArg` for `SocketAddr` 43 //! * `parse_arg` - implements `parse_arg::ParseArg` for `SocketAddr`
44 //! * `tokio_0_2` - adds `bind_tokio_0_2` convenience method to `SocketAddr` 44 //! * `tokio_0_2` - adds `bind_tokio_0_2` convenience method to `SocketAddr`
45 //! * `tokio_0_3` - adds `bind_tokio_0_3` convenience method to `SocketAddr` 45 //! * `tokio_0_3` - adds `bind_tokio_0_3` convenience method to `SocketAddr`
46 //! * `async_std` - adds `bind_async_std` convenience method to `SocketAddr` 46 //! * `async_std` - adds `bind_async_std` convenience method to `SocketAddr`
47 //!
48 //! ## MSRV
49 //!
50 //! This crate must always compile with the latest Rust available in the latest Debian stable.
51 //! That is currently Rust 1.41.1. (Debian 10 - Buster)
52
47 53
48 #![deny(missing_docs)] 54 #![deny(missing_docs)]
49 55
50 pub mod error; 56 pub mod error;
51 57