24 lines
563 B
TOML
24 lines
563 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"audiod",
|
|
"init",
|
|
"initfs",
|
|
"initfs/archive-common",
|
|
"initfs/tools",
|
|
"ipcd",
|
|
"logd",
|
|
"netstack",
|
|
"ptyd",
|
|
"ramfs",
|
|
"randd",
|
|
"zerod",
|
|
]
|
|
|
|
# Bootstrap needs it's own profile configuration
|
|
exclude = ["bootstrap"]
|
|
|
|
[patch.crates-io]
|
|
# Needs libc 0.2 backport of https://github.com/rust-lang/libc/pull/4825
|
|
libc = { git = "https://gitlab.redox-os.org/redox-os/liblibc.git", branch = "redox-0.2" }
|
|
net2 = { git = "https://gitlab.redox-os.org/redox-os/net2-rs.git", branch = "master" } |