Bump to 0.1.19

This commit is contained in:
Alex Crichton 2015-03-25 10:11:05 -07:00
parent 2c5aa07722
commit c8a5ca4ece
4 changed files with 5 additions and 6 deletions

View file

@ -1,7 +1,7 @@
[package] [package]
name = "toml" name = "toml"
version = "0.1.18" version = "0.1.19"
authors = ["Alex Crichton <alex@alexcrichton.com>"] authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT/Apache-2.0" license = "MIT/Apache-2.0"
readme = "README.md" readme = "README.md"

View file

@ -40,7 +40,7 @@
#![deny(missing_docs)] #![deny(missing_docs)]
#![cfg_attr(test, deny(warnings))] #![cfg_attr(test, deny(warnings))]
extern crate "rustc-serialize" as rustc_serialize; extern crate rustc_serialize;
use std::collections::BTreeMap; use std::collections::BTreeMap;
use std::str::FromStr; use std::str::FromStr;

View file

@ -23,8 +23,7 @@ use self::DecodeErrorKind::{ExpectedMapElement, NoEnumVariants, NilTooLong};
/// # Example /// # Example
/// ///
/// ``` /// ```
/// # #![allow(unstable)] /// extern crate rustc_serialize;
/// extern crate "rustc-serialize" as rustc_serialize;
/// extern crate toml; /// extern crate toml;
/// ///
/// # fn main() { /// # fn main() {
@ -32,7 +31,7 @@ use self::DecodeErrorKind::{ExpectedMapElement, NoEnumVariants, NilTooLong};
/// use rustc_serialize::Encodable; /// use rustc_serialize::Encodable;
/// ///
/// #[derive(RustcEncodable)] /// #[derive(RustcEncodable)]
/// struct MyStruct { foo: int, bar: String } /// struct MyStruct { foo: isize, bar: String }
/// let my_struct = MyStruct { foo: 4, bar: "hello!".to_string() }; /// let my_struct = MyStruct { foo: 4, bar: "hello!".to_string() };
/// ///
/// let mut e = Encoder::new(); /// let mut e = Encoder::new();

View file

@ -1,4 +1,4 @@
extern crate "rustc-serialize" as rustc_serialize; extern crate rustc_serialize;
extern crate toml; extern crate toml;
use std::collections::BTreeMap; use std::collections::BTreeMap;