diff options
author | Alex Crichton <alex@alexcrichton.com> | 2015-06-09 14:39:23 -0700 |
---|---|---|
committer | Alex Crichton <alex@alexcrichton.com> | 2015-06-17 09:06:59 -0700 |
commit | d444d0c357e85c90e73585520e2da74304c7265a (patch) | |
tree | b64c15147beeccf6cd62eb019d76b16dc5260e22 /src/libgraphviz | |
parent | c44f5399e4dd2f9d55e107d365d6fe98f6491dc9 (diff) | |
download | rust-d444d0c357e85c90e73585520e2da74304c7265a.tar.gz |
collections: Split the `collections` feature
This commit also deprecates the `as_string` and `as_slice` free functions in the
`string` and `vec` modules.
Diffstat (limited to 'src/libgraphviz')
-rw-r--r-- | src/libgraphviz/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libgraphviz/lib.rs b/src/libgraphviz/lib.rs index f6c5d66f55c..f8d80035d97 100644 --- a/src/libgraphviz/lib.rs +++ b/src/libgraphviz/lib.rs @@ -281,8 +281,9 @@ #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "https://doc.rust-lang.org/favicon.ico", html_root_url = "http://doc.rust-lang.org/nightly/")] -#![feature(collections)] + #![feature(into_cow)] +#![feature(str_escape)] use self::LabelText::*; |