Files
third_party_rust_rust-smallvec/Cargo.toml
T
Matt Brubeck cd32126e72 Version 1.4.2
* `insert_many` no longer leaks elements if the provided iterator panics (#213).
* The unstable `const_generics` and `specialization` features are
  updated to work with the most recent nightly Rust toolchain (#232).
* Internal code cleanup (#229, #231).
2020-08-11 15:27:07 -07:00

26 lines
649 B
TOML

[package]
name = "smallvec"
version = "1.4.2"
edition = "2018"
authors = ["The Servo Project Developers"]
license = "MIT/Apache-2.0"
repository = "https://github.com/servo/rust-smallvec"
description = "'Small vector' optimization: store up to a small number of items on the stack"
keywords = ["small", "vec", "vector", "stack", "no_std"]
categories = ["data-structures"]
readme = "README.md"
documentation = "https://docs.rs/smallvec/"
[features]
const_generics = []
write = []
union = []
specialization = []
may_dangle = []
[dependencies]
serde = { version = "1", optional = true, default-features = false }
[dev_dependencies]
bincode = "1.0.1"