cargo-port 0.2.0

A TUI for inspecting and managing Rust projects
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Per-user themes directory path for cargo-port.
//!
//! The framework owns theme types, registry assembly, the directory
//! watch, the resolver, and the OS appearance poller. The app owns
//! the on-disk location: `dirs::config_dir() / "cargo-port" / "themes"`.

mod constants;
mod paths;

#[cfg(test)]
pub(crate) use paths::ThemesDirOverrideGuard;
#[cfg(test)]
pub(crate) use paths::set_themes_dir_override_for_test;
pub(crate) use paths::themes_dir;