Last active
April 17, 2023 14:21
-
-
Save Enigo/93e7c2e4086df27d28c5655b9f610ea7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[package] | |
name = "ui" | |
version = "0.1.0" | |
edition = "2021" | |
[[bin]] | |
name = "ui" | |
path = "src/main.rs" | |
[dependencies] | |
log = "0.4.6" | |
wasm-logger = "0.2.0" | |
yew = { version = "0.20.0", features = ["csr"] } | |
yew-router = "0.17" | |
reqwest = { version = "0.11", features = ["json"] } # for backend API call | |
wasm-bindgen-futures = "0.4.34" # for backend API call | |
serde = { version = "1.0.159", features = ["derive"] } # for backend API call model deserialization | |
chrono = { version = "0.4.23", features = ["serde"] } # for backend API call model deserialization and operations with dates |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment