[package]
name = "lib"
version = "0.0.2-alpha"
edition = "2024"
description = "LIB: Math and container utilities for Rust. Notice: study purpose, not production ready."
license = "Apache-2.0"
repository = "https://github.com/HCO168/hco_rust"
documentation = "https://docs.rs/hco"
readme = "README.md"
keywords = ["math", "interval", "utils", "fraction"]
categories = ["algorithms", "data-structures"]
include = [
"Cargo.toml",
"README.md",
"LICENSE",
"src/lib.rs",
"src/**"
]
[lib]
name = "lib"
path = "src/lib.rs"
[dependencies]
[features]
default = ["math","data","ntr_lang"]
data = []
math = ["data"]
ntr_lang=["math","data"]