19 lines
379 B
TOML
19 lines
379 B
TOML
[package]
|
|
name = "coreutils"
|
|
version = "0.0.1"
|
|
edition = "2021"
|
|
license = "AGPL-3.0-or-later"
|
|
authors = [
|
|
"Emma Tebibyte <emma@tebibyte.media>",
|
|
"silt <silt@tebibyte.media>"
|
|
]
|
|
|
|
[dependencies]
|
|
libc = { version = "0.2.14", default-features = false }
|
|
sysexits = "0.3.4"
|
|
arg = { version = "0.1.0", path = "arg", package = "arg" }
|
|
|
|
[[bin]]
|
|
name = "cat"
|
|
path = "src/rs/cat.rs"
|