More Cargo.toml cleanups

This commit is contained in:
Alex Touchet 2020-05-14 22:20:18 -07:00 committed by GitHub
parent e1cc38bea8
commit d132866c5d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 128 additions and 129 deletions

View file

@ -10,16 +10,16 @@ name = "fallible"
path = "lib.rs"
[dependencies]
smallvec = "1.0"
hashglobe = { path = "../hashglobe" }
smallvec = "1.0"
# This crate effectively does nothing except if the `known_system_malloc`
# feature is specified.
#
# In that case, we actually call the system malloc functions to reserve space,
# otherwise we just let rust do its thing (aborting on OOM).
# otherwise we just let Rust do its thing (aborting on OOM).
#
# This is effectively a stop-gap measure until we can do this properly in
# stable rust.
# stable Rust.
[features]
known_system_malloc = []