[package]
edition = "2024"
name = "rustedbytes-tl"
version = "0.2.0"
authors = [
"y21",
"Yehor Smoliakov",
]
build = false
exclude = [".github/*"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast HTML parser written in pure Rust"
homepage = "https://github.com/RustedBytes/rustedbytes-tl"
documentation = "https://docs.rs/rustedbytes-tl"
readme = "README.md"
keywords = [
"html",
"parser",
]
categories = [
"parser-implementations",
"parsing",
]
license = "MIT"
repository = "https://github.com/RustedBytes/rustedbytes-tl"
[features]
__INTERNALS_DO_NOT_USE = []
default = []
portable-simd = []
std = ["memchr/std"]
[lib]
name = "tl"
path = "src/lib.rs"
[[bench]]
name = "tl"
path = "benches/tl.rs"
harness = false
[dependencies.memchr]
version = "2.8"
default-features = false
[dev-dependencies.criterion]
version = "0.3"
features = ["html_reports"]
[profile.bench]
opt-level = 3
lto = "fat"
codegen-units = 1
debug = 0
overflow-checks = false
incremental = false
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
debug = 0
panic = "abort"
overflow-checks = false
incremental = false