mirror of
https://github.com/openharmony/third_party_rust_rust-smallvec.git
synced 2026-07-16 10:54:27 -04:00
26f0d922a6
Change log: * Add the `append` method (#237). * Add support for more array sizes between 17 and 31 (#234). * Don't panic on deserialization errors (#238).
26 lines
649 B
TOML
26 lines
649 B
TOML
[package]
|
|
name = "smallvec"
|
|
version = "1.5.0"
|
|
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"
|