cicero_path/lib.rs
1#![doc = include_str!("../README.md")]
2
3pub use cicero_path_core::{target_dir, workspace_dir};
4pub use repo_path::*;
5
6use std::path::PathBuf;
7
8
9/// `Cargo.toml` file at the root of your workspace.
10pub fn workspace_cargo_toml() -> PathBuf {
11 cicero_path_core::USER_WORKSPACE_CARGO_TOML.to_path_buf()
12}