zeck 3.0.1

A Rust library for compressing and decompressing data using the Zeckendorf representation algorithm
Documentation
[[bench]]
harness = false
name = "fibonacci_bench"
path = "benches/fibonacci_bench.rs"

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

[[bin]]
name = "zeck-compress"
path = "src/bin/zeck-compress.rs"
required-features = ["cli_tools"]

[[bin]]
name = "zeck-decompress"
path = "src/bin/zeck-decompress.rs"
required-features = ["cli_tools"]

[[bin]]
name = "zeck-generate-data"
path = "src/bin/generate_data.rs"
required-features = ["development_tools"]

[dependencies.clap]
features = ["derive"]
optional = true
version = "4.5.54"

[dependencies.getrandom]
features = ["wasm_js"]
version = "0.3.4"

[dependencies.num-bigint]
version = "0.4.6"

[dependencies.num-traits]
version = "0.2.19"

[dependencies.rand]
optional = true
version = "0.9.2"

[dependencies.serde]
features = ["derive"]
version = "1.0.228"

[dependencies.serde-wasm-bindgen]
version = "0.6.5"

[dependencies.tsify]
version = "0.5.6"

[dependencies.wasm-bindgen]
version = "0.2.106"

[dev-dependencies.criterion]
features = ["csv_output", "html_reports"]
version = "0.8.1"

[dev-dependencies.num-format]
features = ["num-bigint"]
version = "0.4.4"

[dev-dependencies.plotters]
version = "0.3.7"

[dev-dependencies.rand]
version = "0.9.2"

[[example]]
name = "generate-statistics"
path = "examples/generate_statistics.rs"

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

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

[features]
cli_tools = ["dep:clap"]
default = []
development_tools = ["dep:rand"]

[lib]
crate-type = ["cdylib", "rlib"]
name = "zeck"
path = "src/lib.rs"

[package]
authors = ["Peter Ryszkiewicz"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
categories = ["compression", "algorithms", "mathematics"]
description = "A Rust library for compressing and decompressing data using the Zeckendorf representation algorithm"
edition = "2024"
exclude = [".github/", ".vscode/", "generated_data/", "plots/", "pkg/", "scripts/", "statistics_history/", "flamegraph.svg", "profile.json.gz", "target/"]
keywords = ["compression", "zeckendorf", "fibonacci", "algorithm", "data-compression"]
license = "MIT"
name = "zeck"
readme = "README.md"
repository = "https://github.com/pRizz/zeckendorf.git"
version = "3.0.1"