Skip to main content
Module

x/aleph/examples/yew-app/Cargo.toml

The Full-stack Framework in Deno.
Very Popular
Go to Latest
File
[package]name = "yew-app"version = "0.0.0"edition = "2021"
[lib]crate-type = ["cdylib", "rlib"]
[dependencies]# this is the development version of Yewyew = { git = "https://github.com/yewstack/yew.git", features = ["ssr", "hydration"] }yew-router = { git = "https://github.com/yewstack/yew.git" }wasm-bindgen = { version = "0.2.83", features = ["strict-macro"] }wasm-bindgen-futures = "0.4.33"serde-wasm-bindgen = "0.4.3"web-sys = "0.3.60"url = "2.2.2"
[profile.release]# less code to include into binarypanic = 'abort'# optimization over all codebase ( better optimization, slower build )codegen-units = 1# optimization for size ( more aggressive )opt-level = 'z'# optimization for size# opt-level = 's'# link time optimization using using whole-program analysislto = true