rust/src/librustpkg/conditions.rs
Tim Chevalier 02a0fb94ee rustpkg: Use workcache
rustpkg now uses the workcache library to avoid recompilation.
Hooray!
2013-09-08 20:05:12 -07:00

53 lines
1.1 KiB
Rust

// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
// Useful conditions
pub use std::path::Path;
pub use package_id::PkgId;
pub use std::libc;
pub use std::libc::stat;
condition! {
pub bad_path: (Path, ~str) -> Path;
}
condition! {
pub bad_stat: (Path, ~str) -> stat;
}
condition! {
pub nonexistent_package: (PkgId, ~str) -> Path;
}
condition! {
pub copy_failed: (Path, Path) -> ();
}
condition! {
pub missing_pkg_files: (PkgId) -> ();
}
condition! {
pub bad_pkg_id: (Path, ~str) -> PkgId;
}
condition! {
pub no_rust_path: (~str) -> Path;
}
condition! {
pub not_a_workspace: (~str) -> Path;
}
condition! {
pub failed_to_create_temp_dir: (~str) -> Path;
}