fsst-rust 0.1.0

FSST-Rust is a pure rust implementation of the Fast Static Symbol Table
Documentation
[[bench]]
harness = false
name = "compress"
path = "benches/compress.rs"

[[bench]]
harness = false
name = "decompress"
path = "benches/decompress.rs"

[dependencies]

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5.1"

[dev-dependencies.zstd]
version = "0.13"

[[example]]
name = "single_str"
path = "examples/single_str.rs"

[[example]]
name = "str_from_file"
path = "examples/str_from_file.rs"

[lib]
name = "fsst_rust"
path = "src/lib.rs"

[package]
authors = ["Herbert Long <wclong279@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["compression", "encoding"]
description = "FSST-Rust is a pure rust implementation of the Fast Static Symbol Table"
edition = "2021"
keywords = ["fsst", "fast_static_symtab", "string_encoding"]
license = "Apache-2.0"
name = "fsst-rust"
readme = "README.md"
repository = "https://github.com/Morgan279/FSST-Rust"
version = "0.1.0"

[profile.release]
codegen-units = 1
debug = 0
debug-assertions = false
incremental = false
lto = true
opt-level = 3
overflow-checks = false
panic = "unwind"
rpath = false

[target.'cfg(not(target_env = "msvc"))'.dev-dependencies.jemallocator]
version = "0.5"