[package]
edition = "2024"
rust-version = "1.93.0"
name = "fastvec"
version = "2.0.0"
build = false
exclude = [
"benchmark",
".github",
"README_ZH.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A high-performance SBO vector crate."
documentation = "https://docs.rs/fastvec"
readme = "README.md"
keywords = [
"SBO",
"SmallVec",
"ArrayVec",
"FastVec",
"no_std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Mysvac/fastvec-rs"
[package.metadata.docs.rs]
rustdoc-args = [
"-Zunstable-options",
"--generate-link-to-definition",
]
all-features = true
[features]
arrayvec = []
default = [
"fastvec",
"arrayvec",
"smallvec",
]
fastvec = []
serde = ["dep:serde_core"]
smallvec = []
std = []
[lib]
name = "fastvec"
path = "src/lib.rs"
[dependencies.serde_core]
version = "1"
optional = true
default-features = false