-
Notifications
You must be signed in to change notification settings - Fork 36
/
Cargo.toml
28 lines (25 loc) · 1018 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
[package]
name = "ybc"
version = "0.4.0"
description = "A Yew component library based on the Bulma CSS framework."
authors = ["Anthony Dodd <[email protected]>"]
edition = "2021"
license = "MIT/Apache-2.0"
repository = "https://github.com/thedodd/ybc"
readme = "README.md"
categories = ["wasm", "web-programming"]
keywords = ["wasm", "web", "bulma", "sass", "yew"]
[dependencies]
derive_more = { version = "0.99.17", default-features = false, features = ["display"] }
web-sys = { version = "0.3.61", features = ["Element", "File", "HtmlCollection", "HtmlSelectElement"] }
yew = { version = "0.20.0", features = ["csr"] }
yew-agent = "0.2.0"
yew-router = { version = "0.17.0", optional = true }
wasm-bindgen = "0.2.84"
serde = { version = "1.0.152", features = ["derive"] }
[features]
default = ["router"]
router = ["yew-router"]
docinclude = [] # Used only for activating `doc(include="...")` on nightly.
[package.metadata.docs.rs]
features = ["docinclude"] # Activate `docinclude` during docs.rs build.