-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (24 loc) · 809 Bytes
/
Cargo.toml
File metadata and controls
28 lines (24 loc) · 809 Bytes
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 = "yew-digit-code"
version = "0.1.0"
edition = "2021"
authors = ["heureka-code"]
[dependencies]
yew = { version = "0.21.0" }
web-sys = { version = "0.3.68", features = ["Window"] }
wasm-bindgen-futures = "0.4.42"
wasm-bindgen = "0.2.91"
log = { version = "0.4.21", optional = true }
rand = { version = "0.8", optional = true }
unicode-segmentation = { version = "1.11.0", optional = true }
itertools = { version = "0.13", optional = true }
serde = { version = "1", optional = true }
yew-hooks = { version = "0.3", optional = true }
[features]
default = ["log", "default-id", "unicode-segmentation", "yew-hooks"]
log = ["dep:log"]
default-id = ["dep:rand"]
unicode-segmentation = ["dep:unicode-segmentation"]
itertools = ["dep:itertools"]
serde = ["dep:serde"]
yew-hooks = ["dep:yew-hooks"]