Update confy

This commit is contained in:
[ ] 2022-12-25 01:55:31 +00:00
parent 132d82680b
commit 5c05436d02
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ edition = "2021"
[dependencies]
anyhow = "1.0"
confy = "0.4"
confy = "0.5"
console = "0.15.0"
dialoguer = "0.9.0"
env_logger = "0.9.0"

View File

@ -71,7 +71,7 @@ impl Args {
if let Some(config_path) = &self.config {
confy::load_path(config_path)
} else {
confy::load("hopper")
confy::load("hopper", None)
}
}
}