[package]
edition = "2018"
name = "thin-vec"
version = "0.2.15"
authors = ["Aria Beingessner <a.beingessner@gmail.com>"]
description = "A vec that takes up less space on the stack"
license = "MIT/Apache-2.0"
repository = "https://github.com/gankra/thin-vec"
homepage = "https://github.com/gankra/thin-vec"
readme = "README.md"
rust-version = "1.53"
[features]
unstable = []
default = ["std"]
std = []
const_new = []
gecko-ffi = []
[dependencies]
serde = { version = "1.0", optional = true }
malloc_size_of = { version = "0.1", default-features = false, optional = true }
[dev-dependencies]
serde_test = "1.0"
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(no_global_oom_handling)'] }