webcomment/webui/Cargo.toml
2023-07-13 11:36:31 +02:00

30 lines
785 B
TOML

cargo-features = ["per-package-target"]
[package]
name = "webcomment-webui"
version = "0.1.0"
authors = ["tuxmain <tuxmain@zettascript.org>"]
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"] }