[package]
edition = "2021"
name = "roughly"
version = "0.1.0"
authors = ["suryanox"]
build = false
exclude = [
"benches/",
"tests/",
".github/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Probabilistic data structures for Rust — because sometimes close enough is good enough."
homepage = "https://github.com/suryanox/roughly"
documentation = "https://docs.rs/roughly"
readme = "README.md"
keywords = [
"bloom-filter",
"hyperloglog",
"count-min-sketch",
"probabilistic",
"approximate",
]
categories = [
"data-structures",
"algorithms",
]
license = "MIT"
repository = "https://github.com/suryanox/roughly"
[features]
default = ["std"]
serde = ["dep:serde"]
std = []
[lib]
name = "roughly"
path = "src/lib.rs"
[dependencies.ahash]
version = "0.8"
[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true