forked from Miserlou/Loop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (26 loc) · 759 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
[package]
name = "loop-rs"
version = "0.6.1"
authors = ["Rich Jones <[email protected]>", "Felix Obenhuber <[email protected]>"]
description = "UNIX's missing loop command"
edition = "2018"
documentation = "https://github.com/Miserlou/Loop"
homepage = "https://github.com/Miserlou/Loop"
repository = "https://github.com/Miserlou/Loop"
readme = "README.md"
license = "MIT"
[dependencies]
anyhow = "1.0.42"
atty = "0.2.14"
bytes = "1.0.1"
futures = "0.3.15"
humantime = "2.1.0"
regex = "1.5.4"
structopt = "0.3.22"
tokio = { version = "1.8.2", features = ["rt", "macros", "io-util", "io-std", "time", "process"] }
tokio-util = { version = "0.6.7", features = ["codec"] }
[dev-dependencies]
assert_cmd = "1.0.7"
[[bin]]
name = "loop"
path = "src/main.rs"