-
Notifications
You must be signed in to change notification settings - Fork 18
/
Cargo.toml
76 lines (61 loc) · 1.46 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[package]
name = "netutils"
version = "0.1.0"
authors = ["Jeremy Soller <[email protected]>"]
[lib]
name = "netutils"
path = "src/lib/lib.rs"
[[bin]]
name = "dhcpd"
path = "src/dhcpd/main.rs"
[[bin]]
name = "dns"
path = "src/dns/main.rs"
# [[bin]]
# name = "httpd"
# path = "src/httpd/main.rs"
[[bin]]
name = "irc"
path = "src/irc/main.rs"
[[bin]]
name = "nc"
path = "src/nc/main.rs"
[[bin]]
name = "ntp"
path = "src/ntp/main.rs"
# [[bin]]
# name = "telnetd"
# path = "src/telnetd/main.rs"
# [[bin]]
# name = "wget"
# path = "src/wget/main.rs"
[[bin]]
name = "whois"
path = "src/whois/main.rs"
[[bin]]
name = "ping"
path = "src/ping/main.rs"
[dependencies]
anyhow = "1"
# hyper-rustls = "0.16.1"
ntpclient = { git = "https://github.com/willem66745/ntpclient-rust" }
redox-daemon = "0.1.2"
redox_event = "0.4"
termion = "4"
arg_parser = { git = "https://gitlab.redox-os.org/redox-os/arg-parser.git" }
pbr = "1.0.1"
redox_termios = "0.1.3"
# mio = "=0.6.14"
net2 = "=0.2.37"
# tokio = { git = "https://gitlab.redox-os.org/redox-os/tokio" }
# tokio-reactor = { git = "https://gitlab.redox-os.org/redox-os/tokio" }
url = "1.7.2"
libredox = "0.1"
# [dependencies.hyper]
# version = "0.12.27"
# default-features = false
[target.'cfg(not(target_os = "redox"))'.dependencies]
libc = "0.2.51"
[patch.crates-io]
# mio = { git = "https://gitlab.redox-os.org/redox-os/mio.git", branch = "redox-unix" }
net2 = { git = "https://gitlab.redox-os.org/redox-os/net2-rs.git", branch = "master" }