18 lines
427 B
TOML
18 lines
427 B
TOML
[package]
|
|
name = "webui"
|
|
version = "0.1.0"
|
|
authors = ["Austen Adler <agadler@austenadler.com>"]
|
|
edition = "2018"
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
serde = {version = "1.0", features = ["derive"]}
|
|
actix = "0.10.0"
|
|
actix-web = {version = "3.3.2", default_features = false}
|
|
actix-web-actors = "3.0.0"
|
|
rust-embed="6.0.0"
|
|
serde_json = "1"
|
|
live-view = { path = "./liveview-rust/" }
|
|
askama = "0.10.5"
|
|
common = { path = "../common" }
|