[[bin]]
name = "intervalx"
path = "src/main.rs"
[dependencies]
[lib]
name = "intervalx"
path = "src/lib.rs"
[package]
authors = ["Ossama Abboud<ossama.abboud95@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["mathematics", "data-structures"]
description = "A strongly-typed generic interval algebra library for Rust"
documentation = "https://docs.rs/intervalx"
edition = "2024"
keywords = ["interval", "generic", "algebra", "math"]
license = "MIT"
name = "intervalx"
readme = "README.MD"
repository = "https://github.com/oOp995/intervalx"
version = "0.1.0"
[package.metadata.docs.rs]
all-features = true
[[test]]
name = "interval_adjaceny"
path = "tests/interval_adjaceny.rs"
[[test]]
name = "interval_basic"
path = "tests/interval_basic.rs"
[[test]]
name = "interval_construction"
path = "tests/interval_construction.rs"
[[test]]
name = "interval_equality"
path = "tests/interval_equality.rs"
[[test]]
name = "interval_intersection"
path = "tests/interval_intersection.rs"
[[test]]
name = "interval_union"
path = "tests/interval_union.rs"