thesis/project/frontend/Cargo.toml

22 lines
513 B
TOML
Raw Normal View History

2020-04-13 17:48:42 +03:00
[package]
name = "thesis-frontend"
version = "0.1.0"
authors = ["Marko Korhonen <marko.korhonen@reekynet.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
stdweb = "0.4.20"
yew = { version = "0.14.3", features = ["std_web"] }
yew-router = { version = "0.11.0", features = ["std_web"] }
2020-04-17 18:08:18 +03:00
log = "0.4.8"
2020-04-28 19:01:29 +03:00
web_logger = "0.2.0"
serde_json = "1.0.52"
anyhow = "1.0.28"
2020-05-01 21:26:22 +03:00
thiserror = "1.0.16"
2020-04-13 17:48:42 +03:00
[[bin]]
name = "app"
path = "src/main.rs"