yac
/
coreutils
Archived
2
0
Fork 0
This repository has been archived on 2024-01-01. You can view files and clone it, but cannot push or open issues or pull requests.
coreutils/Cargo.toml

19 lines
379 B
TOML
Raw Normal View History

2022-12-05 01:44:55 +00:00
[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>"
]
2022-12-05 01:44:55 +00:00
[dependencies]
2022-12-14 22:56:59 +00:00
libc = { version = "0.2.14", default-features = false }
2022-12-10 04:06:22 +00:00
sysexits = "0.3.4"
2022-12-12 00:25:52 +00:00
arg = { version = "0.1.0", path = "arg", package = "arg" }
2022-12-05 01:44:55 +00:00
[[bin]]
name = "cat"
2022-12-06 00:09:13 +00:00
path = "src/rs/cat.rs"