ranges 0.4.0

This crate provides a generic alternative to core/std ranges, set-operations to work with them and a range set that can efficiently store them with the least amount of memory possible.
Documentation
[badges.gitlab]
branch = "master"
repository = "bit-refined/ranges"

[badges.maintenance]
status = "experimental"

[[bench]]
harness = false
name = "ranges-insert"

[[bench]]
harness = false
name = "ranges-union"

[dependencies.arbitrary]
features = ["derive"]
optional = true
version = "1.3.2"

[dependencies.noisy_float]
optional = true
version = "0.2"

[dependencies.num-bigint]
optional = true
version = "0.4.5"

[dependencies.proptest]
optional = true
version = "1.5.0"

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

[dev-dependencies.proptest]
version = "1.5.0"

[package]
authors = ["Kevin Becker <k.becker@byter.dev>"]
categories = ["algorithms", "data-structures", "no-std"]
description = "This crate provides a generic alternative to core/std ranges, set-operations to work with them and a range set that can efficiently store them with the least amount of memory possible."
edition = "2021"
homepage = "https://gitlab.com/bit-refined/ranges/"
keywords = ["range", "no-std", "set"]
license = "LGPL-3.0-or-later"
name = "ranges"
readme = "README.md"
repository = "https://gitlab.com/bit-refined/ranges/"
version = "0.4.0"

[profile.bench]
codegen-units = 1
debug = 0
debug-assertions = false
incremental = false
lto = true
opt-level = 3
overflow-checks = false
rpath = false

[profile.dev]
codegen-units = 16
debug = 2
debug-assertions = true
incremental = true
lto = false
opt-level = 0
overflow-checks = true
panic = "unwind"
rpath = false

[profile.release]
codegen-units = 1
debug = 0
debug-assertions = false
incremental = false
lto = true
opt-level = 3
overflow-checks = false
panic = "unwind"
rpath = false

[profile.test]
codegen-units = 16
debug = 2
debug-assertions = true
incremental = true
lto = false
opt-level = 0
overflow-checks = true
rpath = false