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

22 lines
320 B
TOML

[package]
name = "coreutils"
version = "0.0.1"
edition = "2021"
license = "AGPL-3.0-or-later"
authors = [ "Emma Tebibyte <emma@tebibyte.media>" ]
[dependencies]
arg = "0.3.1"
[[bin]]
name = "cat"
path = "src/bin/cat.rs"
[[bin]]
name = "false"
path = "src/bin/false.rs"
[[bin]]
name = "true"
path = "src/bin/true.rs"