diff --git a/Cargo.toml b/Cargo.toml index a506b89..711ef6e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,9 +41,12 @@ name = "pesde" path = "src/main.rs" required-features = ["bin"] -[lints.clippy] +[workspace.lints.clippy] uninlined_format_args = "warn" +[lints] +workspace = true + [dependencies] serde = { version = "1.0.217", features = ["derive"] } toml = "0.8.20" diff --git a/registry/Cargo.toml b/registry/Cargo.toml index 7933b8a..3b9e1d7 100644 --- a/registry/Cargo.toml +++ b/registry/Cargo.toml @@ -5,6 +5,9 @@ edition = "2021" repository = "https://github.com/pesde-pkg/index" publish = false +[lints] +workspace = true + [dependencies] actix-web = "4.9.0" actix-cors = "0.7.0" diff --git a/registry/src/auth/mod.rs b/registry/src/auth/mod.rs index 0a1f5cd..ab74f4d 100644 --- a/registry/src/auth/mod.rs +++ b/registry/src/auth/mod.rs @@ -93,10 +93,10 @@ impl AuthImpl for Auth { impl Display for Auth { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { match self { - Auth::GitHub(github) => write!(f, "{}", github), - Auth::None(none) => write!(f, "{}", none), - Auth::Token(token) => write!(f, "{}", token), - Auth::RwToken(rw_token) => write!(f, "{}", rw_token), + Auth::GitHub(github) => write!(f, "{github}"), + Auth::None(none) => write!(f, "{none}"), + Auth::Token(token) => write!(f, "{token}"), + Auth::RwToken(rw_token) => write!(f, "{rw_token}"), } } } diff --git a/registry/src/storage/mod.rs b/registry/src/storage/mod.rs index ffb6756..70e6eb8 100644 --- a/registry/src/storage/mod.rs +++ b/registry/src/storage/mod.rs @@ -107,8 +107,8 @@ impl StorageImpl for Storage { impl Display for Storage { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { match self { - Storage::S3(s3) => write!(f, "{}", s3), - Storage::FS(fs) => write!(f, "{}", fs), + Storage::S3(s3) => write!(f, "{s3}"), + Storage::FS(fs) => write!(f, "{fs}"), } } } diff --git a/registry/src/storage/s3.rs b/registry/src/storage/s3.rs index 222b56c..93d8736 100644 --- a/registry/src/storage/s3.rs +++ b/registry/src/storage/s3.rs @@ -128,7 +128,7 @@ impl StorageImpl for S3Storage { &self.bucket, Some(&self.credentials), // capitalize Doc to prevent conflicts with scope names - &format!("Doc/{}.gz", doc_hash), + &format!("Doc/{doc_hash}.gz"), ) .sign(S3_SIGN_DURATION); @@ -149,7 +149,7 @@ impl StorageImpl for S3Storage { let object_url = GetObject::new( &self.bucket, Some(&self.credentials), - &format!("Doc/{}.gz", doc_hash), + &format!("Doc/{doc_hash}.gz"), ) .sign(S3_SIGN_DURATION);