1
0
mirror of https://github.com/Miserlou/Loop synced 2024-07-03 07:28:40 +00:00
loop/Cargo.toml

28 lines
531 B
TOML
Raw Permalink Normal View History

2018-05-17 21:28:24 +00:00
[package]
2018-05-18 16:21:03 +00:00
name = "loop-rs"
version = "0.6.1"
2018-05-17 21:28:24 +00:00
authors = ["Rich Jones <miserlou@gmail.com>"]
2018-05-18 16:15:19 +00:00
description = "UNIX's missing loop command"
documentation = "https://github.com/Miserlou/Loop"
homepage = "https://github.com/Miserlou/Loop"
repository = "https://github.com/Miserlou/Loop"
2018-05-18 16:15:19 +00:00
readme = "README.md"
license = "MIT"
2018-05-17 21:28:24 +00:00
[dependencies]
2019-08-30 21:26:15 +00:00
structopt = "0.2.18"
2018-05-17 21:28:24 +00:00
humantime = "1.1.1"
2018-09-21 20:15:27 +00:00
atty = "0.2"
2018-05-22 17:31:49 +00:00
regex = "1.0.0"
2018-06-20 20:04:08 +00:00
subprocess = "0.1.12"
tempfile = "3.0.3"
2018-05-17 21:28:24 +00:00
2020-10-05 14:48:43 +00:00
[dev-dependencies]
assert_cmd = "1.0.1"
2018-05-17 21:28:24 +00:00
[[bin]]
name = "loop"
2018-07-19 18:04:15 +00:00
path = "src/main.rs"