Skip to content

Commit

Permalink
Better crate name for the C API
Browse files Browse the repository at this point in the history
  • Loading branch information
kornelski committed Nov 1, 2024
1 parent 2f0afb8 commit 704ad3a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion c-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "lolhtml"
name = "lol_html_c_api"
version = "1.1.2"
authors = ["Ivan Nikulin <inikulin@cloudflare.com>", "Joshua Nelson <jnelson@cloudflare.com>"]
edition = "2021"
Expand All @@ -17,4 +17,5 @@ panic = "abort"
lto = true

[lib]
name = "lolhtml"
crate-type = ["staticlib", "cdylib", "rlib"]
2 changes: 1 addition & 1 deletion c-api/c-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ publish = false

[dependencies]
lol_html = { path = "../../" }
lolhtml = { path = "../" }
lol_html_c_api = { path = "../" }
libc = "0.2.139"

[build-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion fuzz/test_case/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ publish = false

[dependencies]
lol_html = { path = "../../" }
lolhtml = { path = "../../c-api" }
lol_html_c_api = { path = "../../c-api" }
encoding_rs = "0.8.13"
libc = "0.2.61"
rand = "0.8.4"
Expand Down
2 changes: 1 addition & 1 deletion js-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "lol-html-js-api"
name = "lol_html_js_api"
version = "1.1.1"
authors = ["Ivan Nikulin <inikulin@cloudflare.com>"]
edition = "2021"
Expand Down

0 comments on commit 704ad3a

Please sign in to comment.