[package] name = "rsinetd" version = "0.2.2" authors = ["劉安 "] 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.33" async-std = { version = "1.6.5", features = ["unstable"] } clap = "2.33.3" futures = "0.3.6" log = "0.4.11" once_cell = "1.4.1" simplelog = "0.8.0" [target.'cfg(unix)'.dependencies] async-signals = "0.3.1" daemonize = "0.4.1" libc = "0.2.79" [profile.release] opt-level = 3 debug = false rpath = false lto = true debug-assertions = false codegen-units = 20 panic = 'abort' overflow-checks = false