cargo-port 0.1.4

A TUI for inspecting and managing Rust projects
// project counts

pub(super) const PROJECT_LIBS_LABEL: &str = "lib";
pub(super) const PROJECT_MEMBERS_LABEL: &str = "members";
pub(super) const PROJECT_PROC_MACROS_LABEL: &str = "proc-macro";
pub(super) const PROJECT_SUBMODULES_LABEL: &str = "submodules";
pub(super) const PROJECT_VENDORED_LABEL: &str = "vendored";

// tests

pub(super) const TESTS_DOC_LABEL: &str = "doc";
pub(super) const TESTS_INTEGRATION_LABEL: &str = "integration";
pub(super) const TESTS_UNIT_LABEL: &str = "unit";

// src tui panes pane_data mod
/// Value shown in the crates.io `version` row when the project is
/// publishable but a confirmed crates.io outage means no data has landed
/// — the title already says "crates.io", so the cell only needs to say
/// the service is unreachable.
pub const CRATES_IO_UNREACHABLE: &str = "unreachable";