[package]
edition = "2024"
name = "hexga_math"
version = "0.0.11-beta.49"
authors = ["Mewily <thomas.mewily@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Math related crate that define number and casting, and support array programming..."
homepage = "https://github.com/Thomas-Mewily/hexga"
readme = "README.md"
keywords = [
"math",
"number",
"casting",
]
categories = [
"mathematics",
"data-structures",
"algorithms",
"rust-patterns",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Thomas-Mewily/hexga"
[features]
default = [
"serde",
"int_are_32_bits",
"float_are_32_bits",
]
float_are_32_bits = ["hexga_typedef/float_are_32_bits"]
float_are_64_bits = ["hexga_typedef/float_are_64_bits"]
float_are_size_bits = ["hexga_typedef/float_are_size_bits"]
int_are_16_bits = ["hexga_typedef/int_are_16_bits"]
int_are_32_bits = ["hexga_typedef/int_are_32_bits"]
int_are_64_bits = ["hexga_typedef/int_are_64_bits"]
int_are_8_bits = ["hexga_typedef/int_are_8_bits"]
int_are_size_bits = ["hexga_typedef/int_are_size_bits"]
serde = [
"dep:serde",
"hexga_core/serde",
]
[lib]
name = "hexga_math"
path = "src/lib.rs"
[dependencies.hexga_array]
version = "0.0.11-beta.49"
default-features = false
[dependencies.hexga_core]
version = "0.0.11-beta.49"
default-features = false
[dependencies.hexga_map_on]
version = "0.0.11-beta.49"
default-features = false
[dependencies.hexga_math_derive]
version = "0.0.11-beta.49"
default-features = false
[dependencies.hexga_number]
version = "0.0.11-beta.49"
default-features = false
[dependencies.hexga_typedef]
version = "0.0.11-beta.49"
default-features = false
[dependencies.rayon]
version = "1.10.0"
[dependencies.serde]
version = "1.0.0"
features = ["derive"]
optional = true
[target.'cfg(target_arch = "wasm32")'.dependencies.web-time]
version = "1.1.0"