| cargo-features = ["panic-immediate-abort"] | |
| [package] | |
| name = "wasm" | |
| version = "0.1.0" | |
| edition = "2024" | |
| [lints] | |
| workspace = true | |
| [lib] | |
| crate-type = ["cdylib"] | |
| [dependencies] | |
| js-sys = "0.3.77" | |
| oxc = { workspace = true } | |
| js = { version = "0.1.0", path = "../js", default-features = false } | |
| thiserror = "2.0.12" | |
| wasm-bindgen = "0.2.100" | |
| web-sys = { version = "0.3.77", features = ["Url","UrlSearchParams"] } | |
| html = { version = "0.1.0", path = "../html" } | |
| [features] | |
| default = ["debug"] | |
| debug = ["js/debug", "html/debug"] | |
| [profile.release] | |
| panic = "immediate-abort" | |