-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (37 loc) · 934 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
[package]
name = "tabster"
version = "0.0.0"
edition = "2021"
readme = "./README.md"
authors = ["luoxiaozero"]
description = "Web Application Keyboard Navigation Tools"
homepage = "https://github.com/thaw-ui/tabster"
repository = "https://github.com/thaw-ui/tabster"
license = "MIT"
[dependencies]
web-sys = { version = "0.3.70", features = [
"Document",
"Window",
"Crypto",
"CssStyleDeclaration",
"DomRect",
"KeyboardEvent",
"HtmlElement",
"HtmlInputElement",
"IntersectionObserver",
"IntersectionObserverEntry",
"IntersectionObserverInit",
"TreeWalker",
"NodeFilter",
"NodeList",
"MutationObserver",
"MutationObserverInit",
"MutationRecord",
"SvgElement",
"console",
] }
uuid = { version = "1.11.0", features = ["v4", "js"] }
serde = { version = "1.0.210", features = ["derive"] }
serde-wasm-bindgen = "0.6.5"
serde_json = "1.0.132"
send_wrapper = "0.6.0"