Returns the project marker directory for the given project root. New runtime storage lives in the user-level profile shard. The project root only carries lightweight marker/config files under `.tracedecay/`.
(project_root: &Path)
| 321 | /// New runtime storage lives in the user-level profile shard. The project root |
| 322 | /// only carries lightweight marker/config files under `.tracedecay/`. |
| 323 | pub fn get_tracedecay_dir(project_root: &Path) -> PathBuf { |
| 324 | project_root.join(TRACEDECAY_DIR) |
| 325 | } |
| 326 | |
| 327 | /// Name of the project marker directory for this project root. |
| 328 | pub fn active_data_dir_name(project_root: &Path) -> &'static str { |
no outgoing calls