unstable stability level

This commit is contained in:
Alexis Mousset
2015-02-27 20:38:14 +01:00
parent d469a93e98
commit e78d97b755
8 changed files with 2 additions and 14 deletions

View File

@@ -1,7 +1,7 @@
[package]
name = "smtp"
version = "0.0.6"
version = "0.0.7"
authors = ["Alexis Mousset <contact@amousset.eu>"]
description = "Simple SMTP client and library"

View File

@@ -9,8 +9,6 @@
//! SMTP command
#![unstable]
use std::ascii::AsciiExt;
use std::error::FromError;
use std::fmt::{Display, Formatter, Result};

View File

@@ -9,8 +9,6 @@
//! Constants defined in SMTP RFCs
#![unstable]
use std::old_io::net::ip::Port;
/// Default smtp port

View File

@@ -9,8 +9,6 @@
//! Error and result type for SMTP clients
#![unstable]
use std::error::Error;
use std::old_io::IoError;
use std::error::FromError;

View File

@@ -9,8 +9,6 @@
//! ESMTP features
#![unstable]
use std::str::FromStr;
use std::fmt::{Display, Formatter, Result};
use std::result::Result as RResult;

View File

@@ -124,7 +124,7 @@
#![doc(html_root_url = "http://amousset.github.io/rust-smtp/smtp/")]
#![experimental]
#![unstable]
#![deny(missing_docs)]

View File

@@ -9,8 +9,6 @@
//! SMTP response, containing a mandatory return code, and an optional text message
#![unstable]
use std::str::FromStr;
use std::fmt::{Display, Formatter, Result};
use std::result::Result as RResult;

View File

@@ -9,8 +9,6 @@
//! State of an SMTP transaction
#![unstable]
use std::fmt;
use std::fmt::{Display, Formatter};