mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-22 21:04:18 +08:00
20 lines
334 B
Rust
20 lines
334 B
Rust
pub mod blake3;
|
|
pub mod config;
|
|
pub mod cook;
|
|
pub mod recipe;
|
|
|
|
mod progress_bar;
|
|
|
|
/// Default for maximum number of levels to descend down dependencies tree.
|
|
pub const WALK_DEPTH: usize = 16;
|
|
|
|
#[cfg(target_os = "redox")]
|
|
pub fn is_redox() -> bool {
|
|
true
|
|
}
|
|
|
|
#[cfg(not(target_os = "redox"))]
|
|
pub fn is_redox() -> bool {
|
|
false
|
|
}
|