forked from uutils/coreutils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 744 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (27 loc) · 744 Bytes
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 = "uu_od"
description = "od ~ (uutils) display formatted representation of input"
repository = "https://github.com/uutils/coreutils/tree/main/src/uu/od"
version.workspace = true
license.workspace = true
homepage.workspace = true
keywords.workspace = true
categories.workspace = true
edition.workspace = true
rust-version.workspace = true
readme.workspace = true
[lints]
workspace = true
[lib]
path = "src/od.rs"
[dependencies]
byteorder = { workspace = true }
clap = { workspace = true }
half = { workspace = true }
rustix = { workspace = true, features = ["stdio"] }
uucore = { workspace = true, features = ["fs", "parser-size"] }
fluent = { workspace = true }
libc.workspace = true
[[bin]]
name = "od"
path = "src/main.rs"