this repo has no description

refactor: clone free again

+3 -3
+3 -3
src/versioning.rs
··· 1 1 use nu_ansi_term::Color::{Green, Red, Yellow}; 2 2 use std::{cmp::Ordering, fmt::Display}; 3 3 4 - #[derive(Debug, Clone)] 4 + #[derive(Debug)] 5 5 pub struct VersionComponent(String, Ordering); 6 6 7 - #[derive(Debug, Clone)] 7 + #[derive(Debug)] 8 8 pub struct Version(Vec<VersionComponent>); 9 9 10 - #[derive(Debug, Clone)] 10 + #[derive(Debug)] 11 11 pub struct VersionList(pub Vec<Version>); 12 12 13 13 impl VersionComponent {