-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
36 lines (32 loc) · 854 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
[package]
name = "http-proxy"
version = "0.3.2"
authors = ["劉安 <[email protected]>"]
edition = "2018"
license = "GPL-3.0"
description = "SuperHacker's HTTP/HTTPS Proxy"
homepage = "https://github.com/SuperHacker-liuan/http-proxy"
repository = "https://github.com/SuperHacker-liuan/http-proxy"
documentation = "https://github.com/SuperHacker-liuan/http-proxy"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-std = "1.6.3"
clap = "2.33.3"
daemonize = "0.4.1"
httparse = "1.3.4"
log = "0.4.11"
once_cell = "1.4.1"
quick-error = "2.0.0"
simplelog = "0.8.0"
[dependencies.futures]
version = "0.3.5"
features = ["async-await"]
[profile.release]
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 20
panic = 'abort'
overflow-checks = false