[package]
edition = "2024"
name = "std-macro-extensions"
version = "0.26.16"
authors = ["root@ltpp.vip"]
build = false
exclude = [
"target",
"Cargo.lock",
"sh",
".github",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A collection of macro extensions for Rust's standard library data structures, simplifying the creation and manipulation of common collections such as HashMap, Vec, and more."
readme = "README.md"
keywords = [
"standard",
"macro",
"extensions",
"structures",
"simplifying",
]
categories = [
"data-structures",
"development-tools",
]
license = "MIT"
repository = "https://github.com/crates-dev/std-macro-extensions"
[lib]
name = "std_macro_extensions"
path = "src/lib.rs"
[dev-dependencies.tokio]
version = "1.49.0"
features = ["full"]
[profile.dev]
opt-level = 3
lto = true
codegen-units = 1
debug = 0
panic = "unwind"
incremental = false
strip = "debuginfo"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
debug = 0
panic = "unwind"
incremental = false
strip = "debuginfo"