lib 0.0.2-beta

LIB: Math and container utilities for Rust. Notice: study purpose, not production ready.
Documentation
[package]
name = "lib"
version = "0.0.2-beta"
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/lib" # docs.rs 自动文档
readme = "README.md"
keywords = ["math", "interval", "utils", "fraction","traits"] # 搜索关键词
categories = ["algorithms", "data-structures","mathematics"]  # crates.io 分类


include = [
    "Cargo.toml",
    "README.md",
    "LICENSE",
    "src/lib.rs",
    #ok to publish:
    "src/**"
]


[lib]
name = "lib"
path = "src/lib.rs"

[dependencies]


[features]
default = []
specialization=[]

[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",
]