mirror of
https://github.com/lexmount/moli.git
synced 2026-09-22 16:01:27 +00:00
28 lines
689 B
TOML
28 lines
689 B
TOML
[package]
|
|
license.workspace = true
|
|
name = "moli-parser"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[features]
|
|
default = []
|
|
# Convenience parser policies for fixtures. Production callers must derive the
|
|
# scripting state from the target Document and construct the parser explicitly.
|
|
test-support = []
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.100"
|
|
html5ever = "0.39.0"
|
|
moli-dom = { path = "../moli-dom" }
|
|
moli-fetch = { path = "../moli-fetch" }
|
|
moli-page-types = { path = "../moli-page-types" }
|
|
moli-script = { path = "../moli-script" }
|
|
moli-stylesheet-blocking = { path = "../moli-stylesheet-blocking" }
|
|
markup5ever = "0.39.0"
|
|
url = "2.5.7"
|
|
xml5ever = "0.39.0"
|
|
xmlparser = "0.13.6"
|
|
|
|
[lints]
|
|
workspace = true
|