htmltoadf 0.1.11

An HTML to Atlassian Document Format (ADF) converter
Documentation
[package]
name = "htmltoadf"
version = "0.1.11"
edition = "2021"
license = "MIT"
description = "An HTML to Atlassian Document Format (ADF) converter"
homepage ="https://github.com/wouterken/htmltoadf"
repository = "https://github.com/wouterken/htmltoadf"
readme = "README.md"
keywords = ["html", "adf", "atlassian", "converter", "cli"]
documentation = "https://docs.rs/htmltoadf/0.1.0/htmltoadf/fn.convert_html_str_to_adf_str.html"
authors = ["Wouter Coppieters"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "htmltoadf"
path = "src/lib.rs"
crate-type = ["rlib", "cdylib"]

[[bin]]
name = "html2adf"
path = "src/bin.rs"

[dependencies]
scraper = "0.25.0"
ego-tree = "0.10.0"
lazy_static = "1.5.0"
serde_json = {version ="1.0.149", features = ["preserve_order"]}
regex = "1.12.2"
wasm-bindgen = "0.2.106"
clap = { version = "4.5.54", features = ["derive"] }

[target.'cfg(target_arch = "wasm32")'.dependencies]
parking_lot_core = "0.9.12"

[profile.release]
codegen-units = 1
lto = true
opt-level = 's'