-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (37 loc) · 1.04 KB
/
Cargo.toml
File metadata and controls
43 lines (37 loc) · 1.04 KB
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
[package]
name = "greenhorn"
version = "0.1.0"
authors = ["Raphael Bernhard <beraphae@gmail.com>"]
edition = "2018"
[features]
default = []
native-dialogs = ["tinyfiledialogs"]
[dependencies]
async-timer = "0.7.3"
futures = "0.3"
log = "0.4.8"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
proc-macro-hack = "0.5.11"
html_macro = { path = "html_macro" }
proc-macro-nested = "0.1.3"
hdrhistogram = "7.0.0"
cfg-if = "0.1.10"
instant = { version = "0.1", features = ["wasm-bindgen"]}
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tungstenite = "0.10.1"
async-tungstenite = {version = "0.4.2", features=["async-std-runtime"]}
async-std = {version = "1.5.0", features = ["unstable"]}
[dev-dependencies]
url = "2.1.0"
assert_matches = "1.3.0"
trybuild = "1.0.24"
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen-futures = "0.4.10"
wasm-bindgen = "0.2"
js-sys = "0.3"
web-sys = { version = "0.3", features = ["Window", "console"] }
lazy_static = "1.4.0"
[dependencies.tinyfiledialogs]
version = "3.0"
optional = true