upgrade webapp

This commit is contained in:
Chris Tsang
2026-07-25 17:21:55 +01:00
parent df94675494
commit 84ba49f0b9
5 changed files with 3988 additions and 4891 deletions
+6 -4
View File
@@ -17,12 +17,14 @@ crate-type = ["cdylib"]
default = ["console_error_panic_hook"]
[dependencies]
cfg-if = "0.1"
console_log = { version = "0.2", features = ["color"] }
wasm-bindgen = { version = "0.2", features = ["serde-serialize"] }
cfg-if = "1.0"
console_log = { version = "1.0", features = ["color"] }
# `serde-serialize` was removed upstream in 0.2.84; params arrive as a JSON
# string and are parsed with serde_json, so the feature was never needed.
wasm-bindgen = "0.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
visioncortex = "0.8.1"
visioncortex = "0.9"
# The `console_error_panic_hook` crate provides better debugging of panics by
# logging them with `console.error`. This is great for development, but requires