-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
47 lines (43 loc) · 1.08 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
40
41
42
43
44
45
46
47
[package]
name = "frontest"
version = "0.3.0"
edition = "2021"
authors = ["Maciej Zwoliński <[email protected]>"]
repository = "https://github.com/zwo1in/frontest-rs"
homepage = "https://github.com/zwo1in/frontest-rs"
documentation = "https://docs.rs/frontest"
license = "MIT OR Apache-2.0"
keywords = ["web", "wasm", "dom", "test", "frontend"]
categories = [
"wasm",
"web-programming",
"accessibility",
"development-tools::testing",
]
description = "A crate for querying, matching and asserting DOM"
readme = "README.md"
[features]
default = ["yew"]
[dependencies]
gloo = { version = "0.11", features = ["futures"] }
wasm-bindgen = "0.2.89"
web-sys = { version = "0.3", features = [
"Document",
"Element",
"HtmlElement",
"HtmlCollection",
"HtmlInputElement",
"HtmlLabelElement",
"HtmlButtonElement",
"HtmlMeterElement",
"HtmlOutputElement",
"HtmlProgressElement",
"HtmlSelectElement",
"HtmlTextAreaElement",
"Node",
"NodeList",
] }
yew = { version = "0.21", optional = true, features = ["csr"] }
[dev-dependencies]
wasm-bindgen-test = "0.3"
futures = "0.3"