2021-03-16 21:32:55 +00:00
|
|
|
[package]
|
|
|
|
name = "uu_dd"
|
|
|
|
version = "0.0.4"
|
|
|
|
authors = ["uutils developers"]
|
|
|
|
license = "MIT"
|
|
|
|
description = "dd ~ (uutils) copy and convert files"
|
|
|
|
|
|
|
|
homepage = "https://github.com/uutils/coreutils"
|
|
|
|
repository = "https://github.com/uutils/coreutils/tree/master/src/uu/dd"
|
|
|
|
keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"]
|
|
|
|
categories = ["command-line-utilities"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/dd.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
uucore = { version=">=0.0.7", package="uucore", path="../../uucore" }
|
|
|
|
uucore_procs = { version=">=0.0.5", package="uucore_procs", path="../../uucore_procs" }
|
Builds out arg parsing. Adds support for if, of, & multiplier strings)
- Adds support for calling dd fn from cl
- Adds basic cl tests from project root
- Adds support for multiplier strings (c, w, b, kB, KB, KiB, ... EB, E,
EiB.
2021-04-03 19:59:03 +00:00
|
|
|
# Probably best to keep this identical to the version of getopts in the uucore crate
|
|
|
|
getopts = "<= 0.2.21"
|
2021-06-08 21:14:19 +00:00
|
|
|
gcd = "2.0"
|
2021-03-16 21:32:55 +00:00
|
|
|
|
2021-03-18 21:38:08 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
md-5 = "0.9"
|
|
|
|
hex-literal = "0.3"
|
|
|
|
|
2021-03-16 21:32:55 +00:00
|
|
|
[[bin]]
|
|
|
|
name = "dd"
|
|
|
|
path = "src/main.rs"
|