Skip to content

Commit d469b24

Browse files
committed
feat(blurhash): port to rust and webassembly
1 parent a475c8f commit d469b24

12 files changed

+4186
-432
lines changed

.gitignore

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
.DS_Store
22
*.log
33
*.log.*
4-
dist
4+
*.tgz
5+
index.d.ts
6+
index.js
57
node_modules
8+
pkg
9+
target

Cargo.lock

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

Cargo.toml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
[package]
2+
name = "blurhash-to-css"
3+
version = "0.1.0"
4+
authors = ["Jamie Mason <[email protected]>"]
5+
edition = "2018"
6+
7+
[lib]
8+
crate-type = ["cdylib"]
9+
10+
[dependencies.web-sys]
11+
version = "0.3"
12+
features = [
13+
"console",
14+
]
15+
16+
[dependencies]
17+
blurhash = "0.1.1"
18+
console_error_panic_hook = "0.1.6"
19+
# this disables rayon in the jpeg decoder, otherwise it breaks in WASM
20+
image = { version = "0.21.0", default-features = false, features = ["jpeg"] }
21+
serde = { version = "1.0.123", features = ["derive"] }
22+
serde_json = "1.0.62"
23+
wasm-bindgen = "=0.2.61"

0 commit comments

Comments
 (0)