2025-05-02 23:47:55 +08:00
|
|
|
[package]
|
|
|
|
name = "article-filter"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
description = "Filter for articles"
|
|
|
|
|
|
|
|
[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 }
|
|
|
|
js-sys = { workspace = true }
|
|
|
|
console_error_panic_hook = { workspace = true }
|
|
|
|
serde = { workspace = true }
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
serde-wasm-bindgen = { workspace = true }
|
|
|
|
chrono = { workspace = true }
|
|
|
|
bincode = { workspace = true }
|
|
|
|
flate2 = { workspace = true }
|
|
|
|
once_cell = { workspace = true }
|
|
|
|
web-sys = { version = "0.3", features = ["console"] }
|
|
|
|
utils-common = { path = "../utils-common" }
|
2025-05-14 18:59:27 +08:00
|
|
|
wee_alloc = { workspace = true, optional = true }
|