-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
56 lines (51 loc) · 1.11 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
[package]
name = "tab-organizer"
version = "5.0.0"
authors = ["Pauan <[email protected]>"]
categories = ["wasm"]
readme = "README.md"
edition = "2018"
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"
debug-assertions = true
lto = true
[workspace]
members = [
"src/sidebar",
"src/background",
"src/options",
"web-extension",
]
[dependencies]
console_error_panic_hook = "0.1.5"
wasm-bindgen = { version = "0.2.45", features = ["nightly"] }
wasm-bindgen-futures = "0.4.0"
js-sys = "0.3.27"
futures = { version = "0.3.0", features = ["async-await"] }
futures-signals = "0.3.0"
gloo-events = "0.1.1"
uuid = { version = "1.1.1", features = ["serde", "v4", "js"] }
dominator = "0.5.0"
serde = { version = "1.0.36", features = ["derive"] }
serde_json = "1.0.40"
lazy_static = "1.0.0"
web-extension = { path = "web-extension" }
[dependencies.web-sys]
version = "0.3.27"
features = [
"Blob",
"BlobPropertyBag",
"console",
"DomException",
"File",
"FileList",
"FileReader",
"MediaQueryList",
"MediaQueryListEvent",
"Storage",
"Performance",
"Url",
"Window",
]