diff --git a/Cargo.lock b/Cargo.lock index 171426c..1316e1e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -115,7 +115,7 @@ dependencies = [ [[package]] name = "ghl" -version = "0.1.0" +version = "1.0.0" dependencies = [ "clap", "indoc", diff --git a/Cargo.toml b/Cargo.toml index 143a06b..3a3c65d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ghl" -version = "0.1.0" +version = "1.0.0" edition = "2021" authors = ["Axlefublr"] license = "MIT" diff --git a/src/args.rs b/src/args.rs index 4ee1c67..1662d83 100644 --- a/src/args.rs +++ b/src/args.rs @@ -1,6 +1,6 @@ +use crate::git::Connector; use clap::Parser; use std::path::PathBuf; -use crate::git::Connector; #[derive(Parser)] #[command(author, version, about)] diff --git a/src/git.rs b/src/git.rs index 9816cf5..1cb912a 100644 --- a/src/git.rs +++ b/src/git.rs @@ -59,7 +59,10 @@ pub fn connector(path: &Path, connector: Option) -> Result Ok(Connector::Tree), false => Ok(Connector::Blob), }