chore(deps): bump clap to latest rc

This commit is contained in:
LGUG2Z
2021-12-31 08:33:29 -08:00
parent 5e3f1cbb44
commit e2ae9b1207
7 changed files with 73 additions and 87 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ edition = "2021"
derive-ahk = { path = "../derive-ahk" }
komorebi-core = { path = "../komorebi-core" }
clap = { version = "3.0.0-beta.5", features = ["wrap_help"] }
clap = { version = "3.0.0-rc.11", features = ["derive", "wrap_help"] }
color-eyre = "0.5"
dirs = "4"
fs-tail = "0.1"
+1 -1
View File
@@ -999,7 +999,7 @@ fn main() -> Result<()> {
fn resolve_windows_path(raw_path: &str) -> Result<PathBuf> {
let path = if raw_path.starts_with('~') {
raw_path.replacen(
"~",
'~',
&dirs::home_dir()
.ok_or_else(|| anyhow!("there is no home directory"))?
.display()