feat(imaging): add pure-Rust Skia backend (#112)
Some checks failed
CI / rust-skia (Rust only) (push) Successful in 2m48s
CI / required (push) Failing after 3m25s

This commit is contained in:
2026-08-13 07:49:37 +00:00
parent e1744f44bb
commit 8c18b2ac8c
46 changed files with 4301 additions and 148 deletions

View File

@@ -18,6 +18,12 @@ sha1 = "0.10"
sha2 = "0.11"
uuid = { version = "1.18", features = ["v4"] }
# Browser and JavaScript WASM targets have no operating-system entropy syscall.
# Select getrandom's supported Web Crypto adapter only for that target family.
[target.'cfg(target_family = "wasm")'.dependencies]
getrandom = { version = "0.4", features = ["wasm_js"] }
uuid = { version = "1.18", features = ["v4", "rng-getrandom"] }
[dev-dependencies]
stats_alloc = "0.1.10"