30 lines
667 B
TOML
30 lines
667 B
TOML
[package]
|
|
name = "supervisor-admin-ui"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
yew = { version = "0.21", features = ["csr"] }
|
|
wasm-bindgen = "0.2"
|
|
wasm-bindgen-futures = "0.4"
|
|
web-sys = { version = "0.3", features = [
|
|
"console",
|
|
"Document",
|
|
"Element",
|
|
"HtmlElement",
|
|
"Window",
|
|
] }
|
|
js-sys = "0.3"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
gloo = { version = "0.11", features = ["console", "timers", "futures"] }
|
|
log = "0.4"
|
|
wasm-logger = "0.2"
|
|
uuid = { version = "1.0", features = ["v4", "js"] }
|
|
|
|
# Use our new WASM OpenRPC client
|
|
hero-supervisor-openrpc-client = { path = "../openrpc" }
|