ser-write 0.4.1

Common traits for writer-style serializers and deserializers designed for no_std targets
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.87"
name = "ser-write"
version = "0.4.1"
authors = ["Rafal Michalski <royaltm75@gmail.com>"]
build = false
include = [
    "src/",
    "/README.md",
    "/LICENSE-MIT",
    "/LICENSE-APACHE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Common traits for writer-style serializers and deserializers designed for no_std targets"
homepage = "https://github.com/royaltm/rust-ser-write"
readme = "README.md"
keywords = [
    "embedded",
    "serde",
]
categories = ["no-std"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/royaltm/rust-ser-write"
resolver = "2"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
alloc = ["tinyvec?/alloc"]
arrayvec = ["dep:arrayvec"]
default = ["std"]
heapless = ["dep:heapless"]
smallvec = [
    "dep:smallvec",
    "alloc",
]
std = ["tinyvec?/std"]
tinyvec = ["dep:tinyvec"]

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

[dependencies.arrayvec]
version = "0.7"
optional = true
default-features = false

[dependencies.heapless]
version = "0.9.2"
optional = true
default-features = false

[dependencies.smallvec]
version = "1.15"
optional = true
default-features = false

[dependencies.tinyvec]
version = "1.9"
features = [
    "grab_spare_slice",
    "rustc_1_57",
]
optional = true
default-features = false