[package]
edition = "2024"
name = "int-interval"
version = "0.9.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A small, no_std half-open interval algebra library for primitive integer types."
readme = "README.md"
keywords = [
"interval",
"range",
"no_std",
"integer",
"algebra",
]
categories = [
"data-structures",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/jcfangc/int-interval"
[lib]
name = "int_interval"
path = "src/lib.rs"
doctest = false
bench = false
[[bench]]
name = "between"
path = "benches/between.rs"
harness = false
[[bench]]
name = "construct"
path = "benches/construct.rs"
harness = false
[[bench]]
name = "contains"
path = "benches/contains.rs"
harness = false
[[bench]]
name = "contains_interval"
path = "benches/contains_interval.rs"
harness = false
[[bench]]
name = "contiguous"
path = "benches/contiguous.rs"
harness = false
[[bench]]
name = "convex_hull"
path = "benches/convex_hull.rs"
harness = false
[[bench]]
name = "difference"
path = "benches/difference.rs"
harness = false
[[bench]]
name = "intersection"
path = "benches/intersection.rs"
harness = false
[[bench]]
name = "intersects"
path = "benches/intersects.rs"
harness = false
[[bench]]
name = "iter"
path = "benches/iter.rs"
harness = false
[[bench]]
name = "symmetric_difference"
path = "benches/symmetric_difference.rs"
harness = false
[[bench]]
name = "union"
path = "benches/union.rs"
harness = false
[dev-dependencies.criterion]
version = "4.7.0"
features = [
"html_reports",
"csv_output",
]
package = "codspeed-criterion-compat"
[dev-dependencies.proptest]
version = "1.10.0"
[dev-dependencies.rust_intervals]
version = "1.0.0"