Skip to content

Commit db8a635

Browse files
committed
use lol_alloc
1 parent f5f3c56 commit db8a635

File tree

5 files changed

+79
-2
lines changed

5 files changed

+79
-2
lines changed

.github/workflows/release-wasm.yml

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
name: Release WASM
2+
3+
on:
4+
push:
5+
tags:
6+
- "**[0-9]+.[0-9]+.[0-9]+*"
7+
8+
env:
9+
CARGO_TERM_COLOR: always
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v4
16+
- name: Setup Toolchain
17+
uses: dtolnay/rust-toolchain@stable
18+
with:
19+
toolchain: stable
20+
targets: x86_64-unknown-linux-gnu
21+
- name: Build
22+
run: |
23+
curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
24+
wasm-pack build --target nodejs --release --scope nbittich ./rdfa-wasm
25+
wasm-pack pack ./rdfa-wasm/pkg
26+
27+
- name: Upload pkg
28+
uses: actions/upload-artifact@v4
29+
with:
30+
name: pkg
31+
path: rdfa-wasm/pkg
32+
publish:
33+
needs: build
34+
runs-on: ubuntu-latest
35+
steps:
36+
- name: Download pkg
37+
uses: actions/download-artifact@v4
38+
with:
39+
name: pkg
40+
path: pkg
41+
- name: Setup NPM
42+
uses: actions/setup-node@v4
43+
env:
44+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
45+
with:
46+
node-version: "20.x"
47+
registry-url: "https://registry.npmjs.org"
48+
- name: Publish on NPM
49+
run: |
50+
cd pkg
51+
npm install
52+
npm publish --access public

Cargo.lock

+19
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ test-case = "3.3.1"
3030
env_logger = "0.11.5"
3131
tortank = "0.24.2"
3232
wasm-bindgen = "0.2.99"
33+
lol_alloc = "0.4.1"
3334
[profile.release]
3435
opt-level = 'z' # Optimize for size.
3536
lto = true # Link Time Optimization (LTO)

rdfa-wasm/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ edition.workspace = true
1010
license.workspace = true
1111

1212
[features]
13-
default = ["console_error_panic_hook"]
13+
default = ["console_error_panic_hook","lol_alloc"]
1414

1515

1616
[lib]
@@ -22,3 +22,4 @@ graph-rdfa-processor.workspace = true
2222
[target.'cfg(target_arch = "wasm32")'.dependencies]
2323
wasm-bindgen.workspace = true
2424
console_error_panic_hook = { workspace = true, optional = true }
25+
lol_alloc={workspace=true,optional=true}

rdfa-wasm/src/lib.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
#![cfg(target_arch = "wasm32")]
22
mod utils;
33
use graph_rdfa_processor::RdfaGraph;
4+
use lol_alloc::{AssumeSingleThreaded, FreeListAllocator};
45
use wasm_bindgen::prelude::*;
5-
6+
// SAFETY: This application is single threaded, so using AssumeSingleThreaded is allowed.
7+
#[global_allocator]
8+
static ALLOCATOR: AssumeSingleThreaded<FreeListAllocator> =
9+
unsafe { AssumeSingleThreaded::new(FreeListAllocator::new()) };
610
#[wasm_bindgen]
711
pub fn html_to_rdfa(html: &str, base: &str, well_known_prefix: &str) -> String {
812
utils::set_panic_hook();

0 commit comments

Comments
 (0)