-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
39 lines (34 loc) · 1.01 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
[package]
authors = ["You <[email protected]>"]
categories = ["wasm"]
description = "My awesome Yew app."
edition = "2021"
license = "Apache-2.0/MIT"
name = "yew-app"
readme = "./README.md"
repository = "https://github.com/jetli/create-yew-app.git"
version = "0.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
log = "0.4.17"
serde = "1.0.145"
reqwest = { version = "0.11.12", features = ["json"] }
yew = "0.19.3"
yew-router = "0.16.0"
yew-hooks = "0.1.56"
wasm-bindgen = "0.2.83"
wasm-logger = "0.2.0"
web-sys = "0.3.60"
gloo-utils = "0.1.5"
clap = { version = "3.0.14", features = ["derive"] }
material-yew = { version = "0.2.0" , features = ["button", "textarea", "top-app-bar", "tabs", "top-app-bar-fixed"] }
dotenv_codegen = "0.15.0"
sqlparser = "0.8.0"
[dev-dependencies]
wasm-bindgen-test = "0.3.14"
gloo-utils = "0.1.0"
[dev-dependencies.web-sys]
version = "0.3.60"
features = ["Document", "Element", "HtmlCollection"]