20 lines
692 B
TOML
20 lines
692 B
TOML
[package]
|
|
name = "web1"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Template for starting a Yew project using Trunk"
|
|
readme = "README.md"
|
|
repository = "https://github.com/yewstack/yew-trunk-minimal-template"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["yew", "trunk"]
|
|
categories = ["gui", "wasm", "web-programming"]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[dependencies]
|
|
yew = { version="0.21", features=["csr"] }
|
|
web-sys = { version = "0.3", features = ["Document", "HtmlElement", "Window"] }
|
|
gloo-utils = "0.1"
|
|
gloo-storage = "0.2"
|
|
gloo-net = "0.4"
|
|
wasm-bindgen-futures = "0.4"
|
|
serde = { version = "1.0", features = ["derive"] } |