initial commit
This commit is contained in:
29
clients/admin-ui/Cargo.toml
Normal file
29
clients/admin-ui/Cargo.toml
Normal file
@@ -0,0 +1,29 @@
|
||||
[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 = "../clients/openrpc" }
|
Reference in New Issue
Block a user