my_box 0.2.0

An educational, zero-dependency Rust implementation of a heap-allocated smart pointer (MyBox<T>), mirroring std::boxed::Box<T> for learning purposes.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.75"
name = "my_box"
version = "0.2.0"
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