[package]
edition = "2024"
name = "common-range-tools"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Library to find Common Range Intersections"
homepage = "https://github.com/akalinux/r-span-tools"
readme = "README.md"
keywords = [
"range",
"intersection",
"common",
]
categories = [
"algorithms",
"data-structures",
"science",
]
license = "MIT"
license-file = "LICENSE"
repository = "https://github.com/akalinux/r-span-tools"
[lib]
name = "common_range_tools"
path = "src/lib.rs"
[[example]]
name = "beyond_any"
path = "examples/beyond_any.rs"
[[example]]
name = "columns"
path = "examples/columns.rs"
[[example]]
name = "example"
path = "examples/example.rs"
[[example]]
name = "floats"
path = "examples/floats.rs"
[[example]]
name = "getbeginend"
path = "examples/getbeginend.rs"
[[example]]
name = "overlaps"
path = "examples/overlaps.rs"
[[example]]
name = "setting_boundries"
path = "examples/setting_boundries.rs"
[[example]]
name = "systemtime"
path = "examples/systemtime.rs"
[[example]]
name = "tldr"
path = "examples/tldr.rs"
[[test]]
name = "builder_tests"
path = "tests/builder_tests.rs"
[[test]]
name = "iter_tests"
path = "tests/iter_tests.rs"
[[test]]
name = "lib_tests"
path = "tests/lib_tests.rs"
[[test]]
name = "utils_tests"
path = "tests/utils_tests.rs"