udled 0.8.0

Tokenizer and parser
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 = "2021"
rust-version = "1.81.0"
name = "udled"
version = "0.8.0"
authors = ["Rasmus Kildevæld <rasmuskildevaeld@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Tokenizer and parser"
readme = "README.md"
keywords = [
    "parser",
    "lexer",
]
categories = [
    "parsing",
    "no-std",
]
license = "MIT"
repository = "https://github.com/kildevaeld/udled-rs"
resolver = "3"

[features]
binary = ["byteorder"]
default = []
macros = ["udled-macros"]
serde = ["dep:serde"]

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

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

[[test]]
name = "any_macro"
path = "tests/any_macro.rs"

[[test]]
name = "buffer"
path = "tests/buffer.rs"

[[test]]
name = "bytes"
path = "tests/bytes.rs"

[[test]]
name = "char_tokenizers"
path = "tests/char_tokenizers.rs"

[[test]]
name = "combinators"
path = "tests/combinators.rs"

[[test]]
name = "error"
path = "tests/error.rs"

[[test]]
name = "exclude_not_peek"
path = "tests/exclude_not_peek.rs"

[[test]]
name = "ignore_case"
path = "tests/ignore_case.rs"

[[test]]
name = "integration"
path = "tests/integration.rs"

[[test]]
name = "into_tokenizer"
path = "tests/into_tokenizer.rs"

[[test]]
name = "location"
path = "tests/location.rs"

[[test]]
name = "span"
path = "tests/span.rs"

[[test]]
name = "tokenizer_basics"
path = "tests/tokenizer_basics.rs"

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

[dependencies.serde]
version = "1"
features = ["derive"]
optional = true

[dependencies.udled-macros]
version = "0.1"
optional = true