[package]
edition = "2021"
rust-version = "1.75"
name = "my_box"
version = "0.2.3"
authors = ["ZenStarDev"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An educational, zero-dependency Rust implementation of a heap-allocated smart pointer (MyBox<T>), mirroring std::boxed::Box<T> for learning purposes."
homepage = "https://github.com/ZenStarDev/MyBox"
documentation = "https://docs.rs/my-box"
readme = "README.md"
keywords = [
"smart-pointer",
"heap",
"allocation",
"educational",
"box",
]
categories = [
"no-std",
"rust-patterns",
"memory-management",
]
license = "Apache-2.0"
repository = "https://github.com/ZenStarDev/MyBox"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = []
[lib]
name = "my_box"
path = "src/lib.rs"
test = true
doctest = true
[[bin]]
name = "my_box"
path = "src/main.rs"
[dependencies]
[dev-dependencies]
[profile.dev]
debug = 2