-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
43 lines (39 loc) · 1.09 KB
/
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
[package]
name = "rsinetd"
version = "0.2.2"
authors = ["劉安 <liuan@sgcc.com.cn>"]
edition = "2018"
license = "GPL-3.0"
publish = ["crates-io"]
description = "A port proxy, replacement of rinetd. Because async-std use epoll rather than select, RsInetd may handle higher throughput than rinetd."
documentation = "https://docs.rs/crate/rsinetd"
homepage = "https://github.com/SuperHacker-liuan/rsinetd"
repository = "https://github.com/SuperHacker-liuan/rsinetd"
categories = [
"command-line-utilities",
"network-programming",
"asynchronous",
]
keywords = ["rinetd", "proxy"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.34"
async-std = { version = "1.7.0", features = ["unstable"] }
clap = "2.33.3"
futures = "0.3.8"
log = "0.4.11"
once_cell = "1.5.2"
simplelog = "0.8.0"
[target.'cfg(unix)'.dependencies]
async-signals = "0.3.1"
daemonize = "0.4.1"
libc = "0.2.80"
[profile.release]
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 20
panic = 'abort'
overflow-checks = false