aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
blob: b19b93e64aafb9eec24ad17563311f0580c3d800 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[package]
name = "smallvec"
version = "1.6.1"
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"