int-intervals 0.1.0

Closed-open integer interval algebra, canonical interval sets, and overlap-stack structures.
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-intervals"
version = "0.1.0"
build = "build.rs"
exclude = [
    "/benches",
    "src/**/tests_for_*.rs",
    "src/**/test_support.rs",
    "xtask/",
    ".github/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Closed-open integer interval algebra, canonical interval sets, and overlap-stack structures."
readme = "README.md"
keywords = [
    "interval",
    "set",
    "stack",
    "no_std",
    "integer",
]
categories = [
    "data-structures",
    "no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/jcfangc/int-intervals"

[features]
default = []
parallel = [
    "dep:rayon",
    "set",
]
set = []
stack = [
    "set",
    "either",
    "once_cell",
]

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

[dependencies.either]
version = "1.16.0"
optional = true

[dependencies.once_cell]
version = "1"
features = ["alloc"]
optional = true
default-features = false

[dependencies.rayon]
version = "1.12.0"
optional = true

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

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

[dev-dependencies.range-collections]
version = "0.4.6"

[dev-dependencies.range-set-blaze]
version = "0.5.0"

[dev-dependencies.rangemap]
version = "1.7.1"

[dev-dependencies.rust_intervals]
version = "1.0.0"