int-interval-stack 0.1.0

Integer half-open interval stack structures for overlap multiplicity.
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 = "int-interval-stack"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Integer half-open interval stack structures for overlap multiplicity."
readme = "README.md"
keywords = [
    "interval",
    "stack",
    "range",
    "integer",
    "algorithms",
]
categories = [
    "data-structures",
    "algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/jcfangc/int-interval-stack"

[lib]
name = "int_interval_stack"
path = "src/lib.rs"
doctest = false
bench = false

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

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

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

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

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

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

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

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

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

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

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

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

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

[dependencies.int-interval]
version = "0.9.2"

[dependencies.rayon]
version = "1.12.0"

[dev-dependencies.criterion]
version = "4.7.0"
features = [
    "html_reports",
    "csv_output",
]
package = "codspeed-criterion-compat"

[dev-dependencies.proptest]
version = "1.11.0"