rustyman/Cargo.toml

26 lines
710 B
TOML
Raw Normal View History

2022-10-25 11:08:26 +00:00
[package]
2022-10-25 11:13:35 +00:00
name = "rustyman"
version = "0.2.3"
2022-10-25 11:08:26 +00:00
edition = "2021"
2022-10-25 11:11:57 +00:00
authors = ["Edgar <git@edgarluque.com>"]
description = "Huffman compression and decompression"
repository = "https://github.com/edg-l/rustyman/"
license = "MIT OR Apache-2.0"
keywords = ["huffman", "compression", "decompression", "lossless", "huffman-coding"]
categories = ["compression", "algorithms"]
documentation = "https://docs.rs/rustyman"
readme = "README.md"
2022-10-25 11:08:26 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2022-10-25 13:07:09 +00:00
[[bench]]
name = "benchmark"
harness = false
2022-10-25 11:08:26 +00:00
[dependencies]
bit-vec = "0.6.3"
2022-10-25 13:07:09 +00:00
[dev-dependencies]
criterion = { version = "0.4.0", features = ["html_reports"] }
2022-10-26 08:35:19 +00:00
proptest = "1.0.0"