chore(deps): update rust crate progenitor to 0.11.0
All checks were successful
Checking Renovate configuration / validate (pull_request) Successful in 1m37s
Build and test / Tests (pull_request) Successful in 1m52s
Build and test / Clippy (pull_request) Successful in 1m52s
Checking yaml / Run yamllint (pull_request) Successful in 3s
Build and test / Build AMD64 (pull_request) Successful in 1m53s
Build and test / Generate Documentation (pull_request) Successful in 1m53s
All checks were successful
Checking Renovate configuration / validate (pull_request) Successful in 1m37s
Build and test / Tests (pull_request) Successful in 1m52s
Build and test / Clippy (pull_request) Successful in 1m52s
Checking yaml / Run yamllint (pull_request) Successful in 3s
Build and test / Build AMD64 (pull_request) Successful in 1m53s
Build and test / Generate Documentation (pull_request) Successful in 1m53s
This commit is contained in:
parent
7ddc1ef26d
commit
47c039cc71
6 changed files with 54 additions and 56 deletions
|
|
@ -55,7 +55,7 @@ async fn main() -> Result<()> {
|
|||
if let Some(project_dirs) = ProjectDirs::from("fr", "enoent", "Immich Tools") {
|
||||
let config_file_path = project_dirs.config_dir().join("config.toml");
|
||||
if config_file_path.exists() {
|
||||
debug!("Reading configuration from {:?}", config_file_path);
|
||||
debug!("Reading configuration from {config_file_path:?}");
|
||||
conf_extractor =
|
||||
conf_extractor.merge(FileAdapter::wrap(Toml::file_exact(config_file_path)));
|
||||
}
|
||||
|
|
@ -135,7 +135,7 @@ async fn validate_client_connection(client: &Client) -> Result<()> {
|
|||
.with_note(|| {
|
||||
format!(
|
||||
"The API version for this client is {}, make sure the server version is compatible",
|
||||
client.api_version()
|
||||
Client::api_version()
|
||||
)
|
||||
})?;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue