[dependencies.heapless]
version = "0.9"
[dependencies.thiserror]
default-features = false
version = "2.0"
[[example]]
name = "debug_demo"
path = "examples/debug_demo.rs"
[[example]]
name = "key_demo"
path = "examples/key_demo.rs"
[[example]]
name = "overlap_demo"
path = "examples/overlap_demo.rs"
[features]
alloc = []
default = ["alloc"]
[lib]
name = "ranges_ext"
path = "src/lib.rs"
[package]
authors = ["周睿 <zrufo747@outlook.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["data-structures", "no-std"]
description = "A no_std range/interval set with merge, contains, and removal (with splitting)"
edition = "2024"
keywords = ["range", "interval", "set", "no_std"]
license = "MIT OR Apache-2.0"
name = "ranges-ext"
readme = "README.md"
repository = "https://github.com/ZR233/ranges-ext"
version = "0.4.0"
[[test]]
name = "boundary_tests"
path = "tests/boundary_tests.rs"
[[test]]
name = "common"
path = "tests/common.rs"
[[test]]
name = "edge_cases"
path = "tests/edge_cases.rs"
[[test]]
name = "potential_issues"
path = "tests/potential_issues.rs"
[[test]]
name = "test"
path = "tests/test.rs"