[package]
edition = "2024"
rust-version = "1.87"
name = "svb"
version = "0.2.0"
build = false
exclude = [
"tests/vectors/*.bin",
"fuzz/",
"svb_ref_doc.md",
"TODO.md",
"docs/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust StreamVByte: integer compression for u16/u32/u64 with SIMD decode (AVX2, SSSE3, NEON)"
homepage = "https://github.com/Psy-Fer/svb"
documentation = "https://docs.rs/svb"
readme = "README.md"
keywords = [
"compression",
"streamvbyte",
"simd",
"integer",
"vbz",
]
categories = [
"compression",
"encoding",
"no-std",
]
license = "MIT"
repository = "https://github.com/Psy-Fer/svb"
[package.metadata.docs.rs]
features = ["simd-auto"]
all-features = false
[features]
alloc = []
default = ["std"]
simd-auto = []
simd-avx2 = []
simd-neon = []
simd-ssse3 = []
std = [
"alloc",
"thiserror/std",
]
[lib]
name = "svb"
path = "src/lib.rs"
[[test]]
name = "compat"
path = "tests/compat.rs"
[[test]]
name = "cross_crate"
path = "tests/cross_crate.rs"
[[test]]
name = "parity"
path = "tests/parity.rs"
[[test]]
name = "roundtrip"
path = "tests/roundtrip.rs"
[[bench]]
name = "decode"
path = "benches/decode.rs"
harness = false
[dependencies.thiserror]
version = "2"
default-features = false
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.streamvbyte64]
version = "0.2"