mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-20 03:44:18 +08:00
This deduplicates code as well as forces names to be sanitized. The API for both redox-pkg and cookbook need some reimagining due to the reshuffling, but this patch is not concerned with that as yet.
8 lines
162 B
Rust
8 lines
162 B
Rust
pub mod blake3;
|
|
pub mod recipe;
|
|
|
|
mod progress_bar;
|
|
|
|
/// Default for maximum number of levels to descend down dependencies tree.
|
|
pub const WALK_DEPTH: usize = 16;
|