зеркало из https://github.com/mozilla/gecko-dev.git
21 строка
523 B
TOML
21 строка
523 B
TOML
[package]
|
|
name = "smallvec"
|
|
version = "0.4.0"
|
|
authors = ["Simon Sapin <simon.sapin@exyr.org>"]
|
|
license = "MPL-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"]
|
|
readme = "README.md"
|
|
documentation = "http://doc.servo.org/smallvec/"
|
|
|
|
[features]
|
|
heapsizeof = ["heapsize"]
|
|
|
|
[lib]
|
|
name = "smallvec"
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
heapsize = { version = "0.4", optional = true }
|