-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
75 lines (66 loc) · 1.44 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[package]
name = "web-sys-query"
version = "0.0.1-alpha.5"
authors = ["Reyk Floeter <contact@reykfloeter.com>"]
edition = "2018"
license = "ISC"
readme = "README.md"
description = "jQuery-like API for web-sys"
repository = "https://github.com/reyk/web-sys-query"
categories = ["wasm", "web-programming"]
keywords = ["wasm", "jquery", "web-sys"]
[badges]
travis-ci = { repository = "reyk/web-sys-query", branch = "main" }
[dependencies]
derive_more = "0.99.11"
displaydoc = "0.2.3"
js-sys = "0.3.46"
thiserror = "1.0.22"
wasm-bindgen = "0.2.69"
serde = { version = "1.0.117", optional = true }
serde_derive = { version = "1.0.117", optional = true }
[dependencies.web-sys]
version = "0.3.46"
features = [
"Document",
"DomTokenList",
"Element",
"HtmlElement",
"HtmlCollection",
"Window",
]
[dependencies.web-sys-query-derive]
path = "derive"
version = "0.0.1-alpha.5"
[dev-dependencies]
log = "0.4.11"
console_log = "0.2.0"
wasm-bindgen-test = "0.3"
[dev-dependencies.web-sys]
version = "0.3.46"
features = [
"Document",
"DomParser",
"HtmlButtonElement",
"HtmlDataElement",
"HtmlFormElement",
"HtmlInputElement",
"HtmlLiElement",
"HtmlMeterElement",
"HtmlOptionElement",
"HtmlOutputElement",
"HtmlParamElement",
"HtmlProgressElement",
"HtmlSelectElement",
"HtmlTextAreaElement",
"NodeList",
"SupportedType",
]
[workspace]
members = [
".",
"derive"
]
[features]
default = []
serde-serialize = [ "serde", "serde_derive" ]