[dependencies.either]
optional = true
version = "1"
[dependencies.proc-macro2]
features = ["span-locations"]
optional = true
version = "1"
[[example]]
name = "xml"
path = "examples/xml.rs"
[features]
default = ["std"]
either = ["dep:either"]
nightly = []
proc-macro2 = ["dep:proc-macro2"]
std = []
[lib]
name = "shrimple_parser"
path = "src/lib.rs"
[lints.clippy]
deref_by_slicing = "warn"
exit = "warn"
infinite_loop = "warn"
mixed_read_write_in_expression = "warn"
must_use_candidate = "allow"
option_if_let_else = "allow"
or_fun_call = "allow"
std_instead_of_alloc = "warn"
std_instead_of_core = "warn"
unit_arg = "allow"
unwrap_used = "warn"
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
[lints.rustdoc]
broken_intra_doc_links = "warn"
[package]
authors = ["Tim Kurdov <tim.kurdov@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["parsing"]
description = "Zero-dependency next-gen parsing combinator library with flexible error reporting"
edition = "2021"
keywords = ["parsing-combinator"]
license = "MIT"
name = "shrimple-parser"
readme = false
repository = "https://github.com/schvv31n/shrimple-parser"
version = "0.0.13"
[package.metadata.docs.rs]
all-features = true
features = ["nightly"]
rustdoc-args = ["--generate-link-to-definition"]