Files
third_party_rust_rust-smallvec/Cargo.toml
T
Matt Brubeck 94872b71fd Disable unused serde features
This makes serde support compatible with no_std.
2020-06-05 13:18:40 -07:00

30 lines
696 B
TOML

[package]
name = "smallvec"
version = "1.4.0"
edition = "2018"
authors = ["Simon Sapin <simon.sapin@exyr.org>"]
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 = []
[lib]
name = "smallvec"
path = "lib.rs"
[dependencies]
serde = { version = "1", optional = true, default-features = false }
[dev_dependencies]
bincode = "1.0.1"