ddsketchy 0.1.6

DD Sketch in Rust
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 = "2021"
rust-version = "1.86.0"
name = "ddsketchy"
version = "0.1.6"
authors = ["Patrick McGleenon"]
build = false
exclude = [".github"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "DD Sketch in Rust"
documentation = "https://docs.rs/ddsketchy"
readme = "README.md"
keywords = [
    "ddsketch",
    "sketch",
    "data-structure",
]
categories = [
    "data-structures",
    "algorithms",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/pmcgleenon/ddsketchy"

[features]
default = []
python = ["dep:pyo3"]
serde = ["dep:serde"]

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

[[example]]
name = "compare_serialization"
path = "examples/compare_serialization.rs"
required-features = ["serde"]

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

[[example]]
name = "readme_serde_example"
path = "examples/readme_serde_example.rs"
required-features = ["serde"]

[[test]]
name = "error_bounds_validation"
path = "tests/error_bounds_validation.rs"

[[test]]
name = "min_indexable_value"
path = "tests/min_indexable_value.rs"

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

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

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

[dependencies.pyo3]
version = "0.24"
features = ["extension-module"]
optional = true

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true

[dev-dependencies.approx]
version = "0.5"

[dev-dependencies.criterion]
version = "0.8"

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

[dev-dependencies.rand_distr]
version = "0.5.1"

[dev-dependencies.serde_json]
version = "1.0"

[dev-dependencies.sketches-ddsketch]
version = "0.3"

[profile.release]