[package]
edition = "2021"
rust-version = "1.70"
name = "odsek"
version = "0.1.0"
build = false
exclude = [
"Cargo.lock",
"target/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lazy, pull-based composition of mathematical interval sets with open/closed endpoints, no_std-compatible."
documentation = "https://docs.rs/odsek"
readme = "README.md"
keywords = [
"interval",
"intervals",
"no-std",
"math",
"ranges",
]
categories = [
"data-structures",
"no-std",
"mathematics",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ra1u/odsek"
[features]
default = ["operators"]
operators = []
[lib]
name = "odsek"
path = "src/lib.rs"
[[example]]
name = "intersection"
path = "examples/intersection.rs"
[[example]]
name = "shift"
path = "examples/shift.rs"
[[example]]
name = "union"
path = "examples/union.rs"
[[test]]
name = "tests"
path = "tests/tests.rs"