array_range_query 0.2.2

Generic segment tree and lazy segment tree implementations for efficient range queries and range updates
Documentation
[package]
name = "array_range_query"
version = "0.2.2"
edition = "2021"
authors = ["Sumanth NR <sumanth.nr.w@gmail.com>"]
description = "Generic segment tree and lazy segment tree implementations for efficient range queries and range updates"
readme = "README.md"
license = "MIT"
repository = "https://github.com/Sumanth-NR/array_range_query"
homepage = "https://github.com/Sumanth-NR/array_range_query"
documentation = "https://docs.rs/array_range_query"
keywords = ["segment-tree", "range-query", "data-structures", "algorithms"]
categories = ["data-structures", "algorithms"]

[dependencies]
min_max_traits = "0.1.0"
num-traits = "0.2.19"

[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
pretty_assertions = "1.4.1"
rand = "0.9.2"

[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"

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

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

[package.metadata.docs.rs]
all-features = true