-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
53 lines (40 loc) · 872 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[package]
name = "wurl"
description = "WebSocket CLI for developers"
version = "0.1.1-alpha.0"
authors = ["Espen Henriksen <[email protected]>"]
keywords = ["websocket", "ws", "cli", "devtool"]
license = "GPL-3.0"
repository = "https://github.com/esphen/wurl"
readme = "README.md"
[[bin]]
doc = false
name = "wurl"
path = "src/bin/wurl.rs"
required-features = ["cli"]
[dependencies]
url = "1.7.0"
log = "0.4.1"
[dependencies.ws]
version = "0.7.6"
features = ["ssl"]
[dependencies.clap]
optional = true
version = "2.31.2"
[dependencies.rprompt]
optional = true
version = "1.0.3"
[dependencies.stderrlog]
optional = true
version = "0.3.0"
[build-dependencies]
clap = "2.31.2"
log = "0.4.1"
rprompt = "1.0.3"
stderrlog = "0.4.0"
[build-dependencies.ws]
version = "0.7.6"
features = ["ssl"]
[features]
default = ["cli"]
cli = ["clap", "rprompt", "stderrlog"]