coreutils/src/uu/od/Cargo.toml
2022-01-17 13:25:51 +01:00

30 lines
833 B
TOML

[package]
name = "uu_od"
version = "0.0.9"
authors = ["uutils developers"]
license = "MIT"
description = "od ~ (uutils) display formatted representation of input"
homepage = "https://github.com/uutils/coreutils"
repository = "https://github.com/uutils/coreutils/tree/master/src/uu/od"
keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"]
categories = ["command-line-utilities"]
edition = "2018"
[lib]
path = "src/od.rs"
[dependencies]
byteorder = "1.3.2"
clap = { version = "3.0", features = ["wrap_help", "cargo"] }
half = "1.6"
libc = "0.2.42"
uucore = { version=">=0.0.11", package="uucore", path="../../uucore" }
uucore_procs = { version=">=0.0.8", package="uucore_procs", path="../../uucore_procs" }
[[bin]]
name = "od"
path = "src/main.rs"
[package.metadata.cargo-udeps.ignore]
normal = ["uucore_procs"]