-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (34 loc) · 785 Bytes
/
Cargo.toml
File metadata and controls
39 lines (34 loc) · 785 Bytes
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 = "cli-proxy"
version = "0.3.5"
authors = ["James Kominick <james.kominick@gmail.com>"]
license = "MIT"
description = "cli proxy server"
repository = "https://github.com/jaemk/proxy"
readme = "README.md"
keywords = ["cli", "proxy", "file", "server", "static"]
categories = ["command-line-utilities", "development-tools", "web-programming"]
exclude = [
"/static/*",
"/media/*",
"/assets/*",
"/ci/*",
]
[[bin]]
name = "proxy"
path = "src/main.rs"
doc = false
[badges]
travis-ci = { repository = "jaemk/proxy", branch = "master" }
[dependencies]
rouille = "2"
walkdir = "2"
log = "0.4"
env_logger = "0.5"
chrono = "0.4"
clap = "2"
error-chain = "0.11"
self_update = { version = "0.4", optional = true }
[features]
default = []
update = ["self_update"]