cmv 0.1.0

Rust implementation of 'Distinct Elements in Streams: An Algorithm for the (Text) Book' by Sourav Chakraborty et al.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "cmv"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust implementation of 'Distinct Elements in Streams: An Algorithm for the (Text) Book' by Sourav Chakraborty et al."
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/romac/cmv"

[features]
default = ["fxhash"]
fxhash = ["dep:fxhash"]

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

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

[dependencies.fxhash]
version = "0.2"
optional = true

[dependencies.rand]
version = "0.9"

[dev-dependencies.divan]
version = "3"
package = "codspeed-divan-compat"

[dev-dependencies.fxhash]
version = "0.2"

[dev-dependencies.rand]
version = "0.9"
features = ["small_rng"]

[profile.bench]
lto = true
codegen-units = 1