35 lines
846 B
TOML
35 lines
846 B
TOML
[package]
|
|
name = "frontend"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
build = "build.rs"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
codegen-units = 1
|
|
opt-level = "z"
|
|
panic = "abort"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bounce = { version = "0.6.1", features = ["helmet"] }
|
|
cynic = { version = "2.2.8", features = ["http-reqwest"] }
|
|
gloo = "0.8.0"
|
|
implicit-clone = "0.3.5"
|
|
lazy_static = "1.4.0"
|
|
log = "0.4.17"
|
|
paste = "1.0.12"
|
|
reqwest = "0.11.18"
|
|
serde = { version = "1.0.163", features = ["derive"] }
|
|
serde_json = "1.0.96"
|
|
wasm-logger = "0.2.0"
|
|
web-sys = { version = "0.3.63", features = ["Window", "Location"] }
|
|
wee_alloc = "0.4.5"
|
|
yew = { version = "0.20.0", features = ["csr"] }
|
|
yew-router = "0.17.0"
|
|
yewdux = "0.9.2"
|
|
|
|
[build-dependencies]
|
|
cynic-querygen = "2.2.8"
|
|
cargo-emit = "0.2.1"
|