[package]
edition = "2024"
name = "lib"
version = "0.0.2-beta"
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/lib"
readme = "README.md"
keywords = [
"math",
"interval",
"utils",
"fraction",
"traits",
]
categories = [
"algorithms",
"data-structures",
"mathematics",
]
license = "Apache-2.0"
repository = "https://github.com/HCO168/hco_rust"
[package.metadata.docs.rs]
default-target = "x86_64-apple-darwin"
targets = [
"x86_64-unknown-linux-gnu",
"x86_64-apple-darwin",
"x86_64-pc-windows-msvc",
]
[features]
default = []
specialization = []
[lib]
name = "lib"
path = "src/lib.rs"
[dependencies]