-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
46 lines (40 loc) · 895 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[workspace]
members = ["xtask"]
[package]
name = "caniuse-rs"
version = "0.1.0"
authors = ["Jonas Platte <[email protected]>"]
edition = "2021"
[lib]
crate-type = ["cdylib"]
[dependencies]
gloo-events = "0.2.0"
gloo-timers = "0.3.0"
gloo-utils = "0.2.0"
once_cell = "1.18.0"
wasm-bindgen = "0.2.87"
yew = { version = "0.21.0", features = ["csr"] }
yew-router = "0.18.0"
[dependencies.web-sys]
version = "0.3.64"
features = [
"Document",
"DomStringMap",
"Element",
"Location",
"HtmlElement",
"Storage",
"Window",
]
[build-dependencies]
anyhow = "1.0.71"
fs-err = "2.9.0"
proc-macro2 = "1.0.60"
serde = { version = "1.0.164", features = ["derive"] }
serde_json = "1"
tera = { version = "1.19.0", default-features = false }
toml = { version = "0.8.12", default-features = false, features = ["parse"] }
quote = "1.0.28"
[profile.release]
opt-level = "s"
lto = true