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