18 lines
540 B
TOML
18 lines
540 B
TOML
[package]
|
|
name = "op-html"
|
|
version.workspace = true
|
|
edition = "2021"
|
|
description = "HTML/CSS importer: converts web documents into editable PenNode trees"
|
|
license = "MIT"
|
|
|
|
[dependencies]
|
|
html5ever = "0.27"
|
|
markup5ever_rcdom = "0.3"
|
|
base64 = "0.22"
|
|
encoding_rs = "0.8"
|
|
flate2 = { version = "1", default-features = false, features = ["rust_backend"] }
|
|
serde_json = "1"
|
|
url = "2"
|
|
zip = { version = "2", default-features = false, features = ["deflate-flate2", "flate2"] }
|
|
jian-ops-schema = { path = "../../vendor/jian/crates/jian-ops-schema" }
|