27 lines
696 B
TOML
27 lines
696 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.8", features = ["js"] }
|
|
gloo = "0.8"
|
|
js-sys = "0.3"
|
|
parking_lot = "0.12.1"
|
|
serde = { version = "1.0.154", features = ["derive", "rc"] }
|
|
serde_json = "1.0.94"
|
|
yew = { version = "0.20.0", features = ["csr"] }
|
|
wasm-bindgen = "0.2"
|
|
wasm-bindgen-futures = "0.4.34"
|