Merge pull request #1576 from c410-f3r/alloc-feature

Make `alloc` feature work on stable
This commit is contained in:
David Tolnay 2019-07-16 07:19:49 -07:00 committed by GitHub
commit 48f1a2c9b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -52,7 +52,7 @@ unstable = []
# Requires a dependency on the unstable core allocation library:
#
# https://doc.rust-lang.org/alloc/
alloc = ["unstable"]
alloc = []
# Opt into impls for Rc<T> and Arc<T>. Serializing and deserializing these types
# does not preserve identity and may result in multiple copies of the same data.