rebox/Cargo.toml
User0 0cd7b3af12
feat: do error handling with anyhow, slight refactor (#6)
Co-authored-by: user0-07161 <user0thenyancat@proton.me>
2025-09-14 20:42:10 +03:00

24 lines
433 B
TOML

[package]
name = "rebox"
version = "0.1.0"
edition = "2024"
[workspace]
members = ["utils", "coreutils", "shell"]
resolver = "3"
[workspace.dependencies]
coreutils = { path = "./coreutils" }
boxutils = { path = "./utils" }
shell = { path = "./shell" }
anyhow = "1.0.99"
[dependencies]
coreutils.workspace = true
boxutils.workspace = true
shell.workspace = true
anyhow.workspace = true
[[bin]]
name = "box"
path = "./src/main.rs"