Files
RedBear-OS/recipes/core/coreutils/source/Cargo.toml
T
vasilito ff4ff35918 feat: track all source trees in git — full fork offline-first model
Red Bear OS is a full fork. All sources must be available from git clone
with zero network access. Removed gitignore rules that excluded fetched
source trees under recipes/*/source/, local/recipes/kde/*/source/,
local/recipes/qt/*/source/, and vendor source trees.

Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded.

127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt
frameworks, mesa, wayland, DRM drivers, and every other recipe source.
2026-05-14 10:55:53 +01:00

73 lines
1.3 KiB
TOML

[package]
authors = ["Polymetric <polymetricofficial@gmail.com>",
"Łukasz Jan Niemier <lukasz@niemier.pl>",
"Jeremy Soller <jackpot51@gmail.com>",
"Ticki <Ticki@users.noreply.github.com>",
"Michael Murphy <mmstickan@gmail.com>"]
name = "coreutils"
version = "0.1.0"
edition = "2021"
autobins = false
[dependencies]
anyhow = "1"
arg_parser = { git = "https://gitlab.redox-os.org/redox-os/arg-parser.git" }
extra = { git = "https://gitlab.redox-os.org/redox-os/libextra.git" }
termion = "4"
# https://github.com/alexcrichton/filetime/pull/104
filetime = { git = "https://github.com/jackpot51/filetime.git" }
redox_users = "0.4.5"
walkdir = "2.2.7"
time = "0.1.42"
base64 = "0.10.1"
num = "0.2.0"
failure = "0.1.5"
failure_derive = "0.1.5"
libredox = "0.1"
[dev-dependencies]
proptest = "0.9.2"
[lib]
path = "src/lib.rs"
[[bin]]
name = "chown"
path = "src/bin/chown.rs"
[[bin]]
name = "clear"
path = "src/bin/clear.rs"
[[bin]]
name = "df"
path = "src/bin/df.rs"
[[bin]]
name = "free"
path = "src/bin/free.rs"
[[bin]]
name = "ps"
path = "src/bin/ps.rs"
[[bin]]
name = "reset"
path = "src/bin/reset.rs"
[[bin]]
name = "shutdown"
path = "src/bin/shutdown.rs"
[[bin]]
name = "time"
path = "src/bin/time.rs"
[[bin]]
name = "uptime"
path = "src/bin/uptime.rs"
[[bin]]
name = "which"
path = "src/bin/which.rs"