-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
62 lines (50 loc) · 1.01 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
[package]
name = "ioexp"
version = "0.1.0"
authors = ["SAWADA Tadashi <[email protected]>"]
edition = "2018"
[[bin]]
name = "echo"
path = "src/echo.rs"
[[bin]]
name = "cat"
path = "src/cat.rs"
[[bin]]
name = "async_echo"
path = "src/async_echo.rs"
[[bin]]
name = "async_cat"
path = "src/async_cat.rs"
[[bin]]
name = "httpget"
path = "src/httpget.rs"
[[bin]]
name = "tee"
path = "src/tee.rs"
[[bin]]
name = "ls"
path = "src/ls.rs"
[[bin]]
name = "echo_server"
path = "src/echo_server.rs"
[[bin]]
name = "echo_client"
path = "src/echo_client.rs"
[[bin]]
name = "tokio_echo_server"
path = "src/tokio_echo_server.rs"
[[bin]]
name = "tokio_echo_client"
path = "src/tokio_echo_client.rs"
[dependencies]
async-std = { version = "1.8.0", features = ["attributes"] }
chrono = "0.4.19"
futures = "~0.3.12"
hyper = "~0.14"
pin-project = "~1.0.4"
reqwest = "~0.11.0"
structopt = "0.3.21"
tokio = { version = "~1.1.0", features = ["full"] }
tokio-stream = "~0.1.2"
tokio-util = { version = "~0.6.1", features = ["io"] }
users = "0.11.0"