feat: migrate to cargo workspaces
This commit is contained in:
parent
b1351ae2b4
commit
4c6ac174ff
3 changed files with 12 additions and 4 deletions
12
Cargo.toml
12
Cargo.toml
|
|
@ -3,11 +3,19 @@ name = "rebox"
|
|||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
boxutils = { path = "./utils" }
|
||||
[workspace]
|
||||
members = ["utils", "coreutils", "shell"]
|
||||
resolver = "3"
|
||||
|
||||
[workspace.dependencies]
|
||||
coreutils = { path = "./coreutils" }
|
||||
boxutils = { path = "./utils" }
|
||||
shell = { path = "./shell" }
|
||||
|
||||
[dependencies]
|
||||
coreutils.workspace = true
|
||||
boxutils.workspace = true
|
||||
shell.workspace = true
|
||||
|
||||
[[bin]]
|
||||
name = "box"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue