-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (33 loc) · 870 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 = "doh"
description = "D'Oh - Directories Over HTTP"
repository = "https://github.com/thecoshman/doh"
readme = "README.md"
keywords = ["http", "client", "https", "file", "directory"]
categories = ["network-programming", "web-programming::http-client"]
license = "MIT"
# Remember to also update in appveyor.yml
version = "0.1.0"
# Remember to also update in doh.md
authors = ["thecoshman <thecoshman@gmail.com>",
"nabijaczleweli <nabijaczleweli@gmail.com>"]
[dependencies]
lazy_static = "0.2"
tabwriter = "1.0"
itertools = "0.6"
term_size = "0.3"
reqwest = "0.8"
rfsapi = "0.2"
getch = "0.2"
clap = "2.26"
time = "0.1"
url = "1.5"
[target.'cfg(target_os="windows")'.dependencies]
kernel32-sys = "0.2"
winapi = "0.2"
[target.'cfg(not(target_os="windows"))'.dependencies]
tinyfiledialogs = "3.0"
[[bin]]
name = "doh"
test = false
doc = false