cicero_path 0.8.1

Access paths relevant for CI code.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![doc = include_str!("../README.md")]
#![warn(missing_docs)]

pub use cicero_path_core::{target_dir, workspace_dir};
pub use repo_path::*;

use std::path::PathBuf;


/// `Cargo.toml` file at the root of your workspace.
pub fn workspace_cargo_toml() -> PathBuf {
    cicero_path_core::USER_WORKSPACE_CARGO_TOML.to_path_buf()
}