From d2600f5e40646232dfddd0301f8642df71ddac95 Mon Sep 17 00:00:00 2001 From: Alexis Mousset Date: Fri, 27 Feb 2015 20:11:12 +0100 Subject: [PATCH] default_type_params is not feature gated anymore --- src/lib.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 72dbf7a..f467f8a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -26,7 +26,6 @@ //! This is the most basic example of usage: //! //! ```rust,no_run -//! #![feature(default_type_params)] //! use smtp::client::Client; //! use smtp::mailer::Email; //! @@ -51,7 +50,6 @@ //! ### Complete example //! //! ```rust,no_run -//! #![feature(default_type_params)] //! use smtp::client::Client; //! use smtp::mailer::Email; //! @@ -89,7 +87,6 @@ //! If you just want to send an email without using `Email` to provide headers: //! //! ```rust,no_run -//! #![feature(default_type_params)] //! use smtp::client::Client; //! use smtp::sendable_email::SimpleSendableEmail; //! @@ -110,7 +107,6 @@ //! You can also send commands, here is a simple email transaction without error handling: //! //! ```rust,no_run -//! #![feature(default_type_params)] //! use smtp::client::Client; //! use smtp::common::SMTP_PORT; //!