2025-05-02 23:47:55 +08:00
|
|
|
[package]
|
|
|
|
name = "search-wasm"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
description = "WebAssembly module for article search functionality"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
|
2025-05-14 18:59:27 +08:00
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
wee_alloc = ["dep:wee_alloc"]
|
|
|
|
|
2025-05-02 23:47:55 +08:00
|
|
|
[dependencies]
|
|
|
|
wasm-bindgen.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
serde_json.workspace = true
|
|
|
|
js-sys.workspace = true
|
|
|
|
bincode.workspace = true
|
|
|
|
flate2.workspace = true
|
|
|
|
console_error_panic_hook.workspace = true
|
|
|
|
web-sys = { workspace = true, features = ["console", "Window", "Performance"] }
|
|
|
|
regex.workspace = true
|
|
|
|
utils-common = { path = "../utils-common" }
|
2025-05-14 18:59:27 +08:00
|
|
|
wee_alloc = { workspace = true, optional = true }
|