ax-codec-bytes 0.1.6

Buffer pooling and bytes crate integration for zero-copy operations and memory-efficient encoding
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"
rust-version = "1.85"
name = "ax-codec-bytes"
version = "0.1.6"
authors = ["Bagus Dwi Harianto robbymangkualam2000@gmail.com"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Buffer pooling and bytes crate integration for zero-copy operations and memory-efficient encoding"
readme = "README.md"
keywords = [
    "serialization",
    "binary",
    "zero-copy",
    "buffer-pool",
    "memory-management",
]
categories = [
    "encoding",
    "memory-management",
    "no-std",
    "data-structures",
]
license = "MIT"

[features]
alloc = ["ax-codec-core/alloc"]
bytes = ["dep:bytes"]
default = [
    "std",
    "bytes",
]
smallvec = ["dep:smallvec"]
std = [
    "ax-codec-core/std",
    "alloc",
]

[lib]
name = "ax_codec_bytes"
path = "src/lib.rs"

[dependencies.ax-codec-core]
version = "0.1.6"

[dependencies.bytes]
version = "1"
optional = true

[dependencies.smallvec]
version = "1"
optional = true

[dev-dependencies]