-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
27 lines (25 loc) · 890 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "trunk-template"
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"]
[target.wasm32-unknown-unknown]
rustflags = ["-C", "target-feature= atomics, bulk-memory, mutable-globals", "-C",
"link-arg=--max-memory=17179869184"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
yew = { version="0.20", features=["csr"] }
gloo-console = "0.2.3"
serde = { version = "1.0", features = ["derive"] }
serde-wasm-bindgen = "0.4"
gloo-net = "0.2"
wasm-bindgen-futures = "0.4"
regex = "1.7.0"
fancy-regex = "0.10.0"
getrandom = { version = "0.2", features = ["js"] }
rand = "0.8.5"