cargo-port 0.2.1

A TUI for inspecting and managing Rust projects
1
2
3
4
5
6
7
8
9
10
use crate::project::AbsolutePath;

#[derive(Clone, Debug, Eq, PartialEq)]
pub enum CargoPortToastAction {
    OpenPath(AbsolutePath),
}

impl From<AbsolutePath> for CargoPortToastAction {
    fn from(path: AbsolutePath) -> Self { Self::OpenPath(path) }
}