zigzag-alloc 1.0.4

A collection of explicit memory allocators and collections inspired by Zig
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 = "2024"
name = "zigzag-alloc"
version = "1.0.4"
authors = ["Maksim Bengraf <me@octobanon.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A collection of explicit memory allocators and collections inspired by Zig"
readme = "README.md"
keywords = [
    "zigzag-alloc",
    "no_std",
    "allocator",
    "embedded",
    "memory-management",
]
categories = [
    "no-std",
    "memory-management",
]
license = "MIT"
repository = "https://github.com/OctoBanon-Main/zigzag-alloc"

[features]
default = ["std"]
ffi = []
std = []

[lib]
name = "zigzag_alloc"
crate-type = [
    "rlib",
    "cdylib",
    "staticlib",
]
path = "src/lib.rs"

[[example]]
name = "arena_vec"
path = "examples/arena_vec.rs"

[[example]]
name = "bounded_array"
path = "examples/bounded_array.rs"

[[example]]
name = "box"
path = "examples/box.rs"

[[example]]
name = "bump_stack"
path = "examples/bump_stack.rs"

[[example]]
name = "full"
path = "examples/full.rs"

[[example]]
name = "hash_map"
path = "examples/hash_map.rs"

[[example]]
name = "pool_string"
path = "examples/pool_string.rs"

[[example]]
name = "priority_queue"
path = "examples/priority_queue.rs"

[profile.dev]
panic = "abort"

[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"