[package]
edition = "2018"
name = "entropy"
version = "0.4.3"
authors = ["Mack Stump <mack@mackstump.com"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Calculates the Shannon entropy of arrays of bytes and strings"
homepage = "https://github.com/smackysnacks/entropy"
documentation = "https://docs.rs/entropy/"
readme = "README.md"
keywords = [
"entropy",
"shannon",
"information-theory",
"randomness",
"compression",
]
categories = ["algorithms"]
license = "MIT"
repository = "https://github.com/smackysnacks/entropy"
[lib]
name = "entropy"
path = "src/lib.rs"
[[bench]]
name = "shannon"
path = "benches/shannon.rs"
harness = false
[dependencies]
[dev-dependencies.criterion]
version = "0.8.1"