unstable stability level
This commit is contained in:
@@ -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"
|
||||
|
||||
|
||||
@@ -9,8 +9,6 @@
|
||||
|
||||
//! SMTP command
|
||||
|
||||
#![unstable]
|
||||
|
||||
use std::ascii::AsciiExt;
|
||||
use std::error::FromError;
|
||||
use std::fmt::{Display, Formatter, Result};
|
||||
|
||||
@@ -9,8 +9,6 @@
|
||||
|
||||
//! Constants defined in SMTP RFCs
|
||||
|
||||
#![unstable]
|
||||
|
||||
use std::old_io::net::ip::Port;
|
||||
|
||||
/// Default smtp port
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -9,8 +9,6 @@
|
||||
|
||||
//! ESMTP features
|
||||
|
||||
#![unstable]
|
||||
|
||||
use std::str::FromStr;
|
||||
use std::fmt::{Display, Formatter, Result};
|
||||
use std::result::Result as RResult;
|
||||
|
||||
@@ -124,7 +124,7 @@
|
||||
|
||||
#![doc(html_root_url = "http://amousset.github.io/rust-smtp/smtp/")]
|
||||
|
||||
#![experimental]
|
||||
#![unstable]
|
||||
|
||||
#![deny(missing_docs)]
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -9,8 +9,6 @@
|
||||
|
||||
//! State of an SMTP transaction
|
||||
|
||||
#![unstable]
|
||||
|
||||
use std::fmt;
|
||||
use std::fmt::{Display, Formatter};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user