cargo-features = ["per-package-target"] [package] name = "webcomment-webui" version = "0.1.0" authors = ["tuxmain "] license = "AGPL-3.0-only" repository = "https://git.txmn.tk/tuxmain/webcomment" description = "Comment web client" edition = "2021" forced-target = "wasm32-unknown-unknown" [lib] crate-type = ["cdylib"] [dependencies] webcomment-common = { path = "../common" } getrandom = { version = "0.2.10", features = ["js"] } gloo = "0.8" js-sys = "0.3" lazy_static = "1.4.0" parking_lot = "0.12.1" serde = { version = "1.0.171", features = ["derive", "rc"] } serde_json = "1.0.100" yew = { version = "0.20.0", features = ["csr"] } wasm-bindgen = "0.2" wasm-bindgen-futures = "0.4.37" web-sys = { version = "0.3.64", features = ["HtmlFormElement"] }