17 lines
423 B
TOML
17 lines
423 B
TOML
[package]
|
|
name = "frontend"
|
|
version = "0.1.0"
|
|
authors = ["Gandalf <gandalfderbunte@riseup.net>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
yew = "0.18"
|
|
wasm-bindgen = "0.2.67"
|
|
serde_json = "1"
|
|
serde = {version = "=1.0.126", features = ["derive"] }
|
|
anyhow = "1"
|
|
yew-router = "0.15.0"
|
|
common = { version = "0.1.0", path = "../common" }
|