mentorenwahl/frontend/Cargo.toml

29 lines
758 B
TOML
Raw Normal View History

2022-11-04 20:23:36 +00:00
[package]
name = "frontend"
version = "0.1.0"
edition = "2021"
2022-11-12 21:50:06 +00:00
[profile.release]
lto = true
codegen-units = 1
opt-level = "z"
panic = "abort"
2022-11-04 20:23:36 +00:00
[dependencies]
2023-01-17 05:56:19 +00:00
yew = { version = "0.20.0", features = ["csr"] }
2022-11-04 20:23:36 +00:00
wasm-logger = "0.2.0"
log = "0.4.6"
2023-01-17 05:56:19 +00:00
yew-router = "0.17.0"
2022-11-04 20:23:36 +00:00
wee_alloc = "0.4.5"
2022-11-05 20:27:49 +00:00
graphql_client = { git = "https://github.com/graphql-rust/graphql-client.git", branch = "main", features = ["reqwest"] }
2022-11-04 20:23:36 +00:00
reqwest = "0.11.12"
serde = "1.0.147"
web-sys = { version = "0.3.60", features = ["Window", "Location"] }
wasm-cookies = "0.1.0"
lazy_static = "1.4.0"
const_format = "0.2.30"
2022-12-16 18:23:38 +00:00
uuid = { version = "1.2.2", features = ["serde"] }
chrono = { version = "0.4.23", features = ["serde"] }
2023-01-17 05:56:19 +00:00
yewdux = "0.9.0"
bounce = { version = "0.6.0", features = ["helmet"] }