[package]
edition = "2024"
name = "arraypp"
version = "0.1.3"
authors = ["Joker2770"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A `no_std` and no `alloc` library for more efficient array processing."
homepage = "https://github.com/Joker2770/arraypp"
readme = "README.md"
keywords = [
"array",
"array-processing",
"no_std",
]
license = "GPL-2.0-or-later"
repository = "https://github.com/Joker2770/arraypp"
[lib]
name = "arraypp"
path = "src/lib.rs"
[profile.dev]
opt-level = 0
lto = true
codegen-units = 1
debug = 2
incremental = false
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
incremental = false
strip = true