sparse_ranges 0.1.13

Efficient sparse range set operations, particularly designed for HTTP range requests and file offset management
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 = "sparse_ranges"
version = "0.1.13"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Efficient sparse range set operations, particularly designed for HTTP range requests and file offset management"
readme = "README.md"
keywords = [
    "http",
    "ranges",
    "set",
    "sparse",
]
categories = [
    "data-structures",
    "web-programming",
]
license = "MIT"
repository = "https://github.com/OpenTritium/sparse_ranges"

[features]
default = []
http = ["dep:http-range-header"]
serde = ["dep:serde"]

[lib]
name = "sparse_ranges"
path = "src/lib.rs"

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

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

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

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

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

[dependencies.http-range-header]
version = "0.4.2"
optional = true

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true

[dependencies.thiserror]
version = "2.0.17"

[dev-dependencies.criterion]
version = "0.8.1"

[dev-dependencies.rand]
version = "0.9.2"

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

[dev-dependencies.serde_json]
version = "1.0"