intervalmap 0.1.1

An interval set/map library inspired by Boost.Icl
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 = "2021"
rust-version = "1.86"
name = "intervalmap"
version = "0.1.1"
authors = ["Petr Benes <w.benny@outlook.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An interval set/map library inspired by Boost.Icl"
documentation = "https://docs.rs/intervalmap"
readme = "README.md"
keywords = [
    "interval",
    "intervalset",
    "intervalmap",
    "interval_set",
    "interval_map",
]
categories = [
    "data-structures",
    "algorithms",
]
license = "MIT"
repository = "https://github.com/wbenny/intervalmap"

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

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

[[test]]
name = "corner_cases"
path = "tests/corner_cases.rs"

[[test]]
name = "interval_map_tests"
path = "tests/interval_map_tests.rs"

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

[dependencies.num-traits]
version = "0.2"

[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]