Skip to content

Commit

Permalink
Update deps and metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
kornelski committed Dec 5, 2024
1 parent 6248dc5 commit 7cb9255
Show file tree
Hide file tree
Showing 3 changed files with 66 additions and 83 deletions.
125 changes: 52 additions & 73 deletions js-api/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 13 additions & 9 deletions js-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,23 @@
[package]
name = "lol_html_js_api"
version = "1.1.1"
authors = ["Ivan Nikulin <inikulin@cloudflare.com>"]
name = "lol-html"
description = "Streaming HTML rewriter/parser with CSS selector-based API"
license = "BSD-3-Clause"
version = "2.1.1"
authors = ["Ivan Nikulin <inikulin@cloudflare.com>", "Gus Caplan <me@gus.host>"]
repository = "https://github.com/cloudflare/lol-html"
edition = "2021"

rust-version = "1.83"
publish = false

[lib]
crate-type = ["cdylib", "rlib"]

[dependencies]
js-sys = "0.3.51"
lol_html = { path = "../" }
serde = { version = "1.0.126", features = ["derive"] }
serde-wasm-bindgen = "0.3.0"
wasm-bindgen = "0.2.74"
thiserror = "1.0.26"
encoding_rs = "0.8.13"
serde-wasm-bindgen = "0.4.5"
thiserror = "2.0"
wasm-bindgen = "0.2.97"

[lib]
crate-type = ["cdylib", "rlib"]
2 changes: 1 addition & 1 deletion js-api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
```js
'use strict';

const { HTMLRewriter } = require('lol_html');
const { HTMLRewriter } = require('lol-html');

const chunks = [];
const rewriter = new HTMLRewriter('utf8', (chunk) => {
Expand Down

0 comments on commit 7cb9255

Please sign in to comment.