bounded-str 0.1.4

Parse, don't validate! No-std bounded string with compile-time length limits and policies
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 = "bounded-str"
version = "0.1.4"
authors = ["cthvlab"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parse, don't validate! No-std bounded string with compile-time length limits and policies"
homepage = "https://github.com/cthvlab/bounded-str"
readme = "README.md"
keywords = [
    "no-std",
    "string",
    "bounded",
    "embedded",
    "security",
]
categories = [
    "no-std",
    "data-structures",
    "parsing",
    "embedded",
    "cryptography",
]
license = "MIT"
repository = "https://github.com/cthvlab/bounded-str"
resolver = "2"

[features]
alloc = []
constant-time = []
default = [
    "alloc",
    "serde",
    "zeroize",
    "constant-time",
]
serde = [
    "dep:serde",
    "alloc",
    "serde/alloc",
]
zeroize = ["dep:zeroize"]

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

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
default-features = false

[dependencies.zeroize]
version = "1.8"
features = ["alloc"]
optional = true
default-features = false