[package]
edition = "2024"
name = "numshooter"
version = "0.2.1"
authors = ["Eduardo Amorim Pereira"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance mathematical library written in Rust"
homepage = "https://github.com/numshooter/numshooter"
documentation = "https://docs.rs/numshooter"
readme = "README.md"
keywords = [
"math",
"performance",
"numerical",
]
categories = [
"mathematics",
"science",
]
license = "MIT"
repository = "https://github.com/numshooter/numshooter"
[lib]
name = "numshooter"
crate-type = ["rlib"]
path = "src/lib.rs"
[dependencies]
[profile.dev]
opt-level = 1
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
strip = true