smallish 0.1.0

Lightweight, no-std syntax for configuration and scripting.
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 = "smallish"
version = "0.1.0"
authors = ["Aaron Griffith <aargri@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lightweight, no-std syntax for configuration and scripting."
documentation = "https://docs.rs/smallish"
readme = "README.md"
keywords = [
    "serde",
    "human-readable",
    "embedded",
]
categories = [
    "no-std",
    "no-std::no-alloc",
    "parser-implementations",
    "config",
]
license = "MIT"
repository = "https://github.com/agrif/smallish"

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

[features]
custom-error-messages = ["dep:heapless"]
default = ["custom-error-messages"]
defmt = [
    "dep:defmt",
    "heapless?/defmt",
]

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

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

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

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

[dependencies.as_variant]
version = "1"

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

[dependencies.heapless]
version = "0.9"
optional = true

[dependencies.nom]
version = "8"
default-features = false

[dependencies.paste]
version = "1"

[dependencies.serde]
version = "1"
features = ["derive"]
default-features = false

[dependencies.thiserror]
version = "2"
default-features = false

[dev-dependencies.serde]
version = "1"
features = ["derive"]
default-features = true

[dev-dependencies.serde_bytes]
version = "0.11"