Skip to main content
Module

x/lol_html/Cargo.toml

Low output latency streaming HTML parser/rewriter with CSS selector-based API in Deno, via Webassembly.
Go to Latest
File
[package]name = "deno-lol-html"version = "0.0.4"description = "Low output latency streaming HTML parser/rewriter with CSS selector-based API in Deno, via Webassembly."repository = "https://github.com/ije/deno-lol-html"authors = ["ije"]license = "MIT"edition = "2021"
[lib]crate-type = ["cdylib", "rlib"]
[dependencies]js-sys = "0.3.58"lol_html = "0.3.1"serde = { version = "1.0.138", features = ["derive"] }serde-wasm-bindgen = "0.4.3"wasm-bindgen = "0.2.81"thiserror = "1.0.31"encoding_rs = "0.8.31"
[profile.release]# less code to include into binarypanic = 'abort'# optimization over all codebase (better optimization, slower build)codegen-units = 1# optimization for size (more aggressive)opt-level = 'z'# optimization for size# opt-level = 's'# link time optimization using using whole-program analysislto = true