style: enable lints in registry

This commit is contained in:
daimond113 2025-02-12 23:42:16 +01:00
parent 2e02fecd46
commit 7150f6a7da
No known key found for this signature in database
GPG key ID: 640DC95EC1190354
5 changed files with 15 additions and 9 deletions

View file

@ -41,9 +41,12 @@ name = "pesde"
path = "src/main.rs" path = "src/main.rs"
required-features = ["bin"] required-features = ["bin"]
[lints.clippy] [workspace.lints.clippy]
uninlined_format_args = "warn" uninlined_format_args = "warn"
[lints]
workspace = true
[dependencies] [dependencies]
serde = { version = "1.0.217", features = ["derive"] } serde = { version = "1.0.217", features = ["derive"] }
toml = "0.8.20" toml = "0.8.20"

View file

@ -5,6 +5,9 @@ edition = "2021"
repository = "https://github.com/pesde-pkg/index" repository = "https://github.com/pesde-pkg/index"
publish = false publish = false
[lints]
workspace = true
[dependencies] [dependencies]
actix-web = "4.9.0" actix-web = "4.9.0"
actix-cors = "0.7.0" actix-cors = "0.7.0"

View file

@ -93,10 +93,10 @@ impl AuthImpl for Auth {
impl Display for Auth { impl Display for Auth {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self { match self {
Auth::GitHub(github) => write!(f, "{}", github), Auth::GitHub(github) => write!(f, "{github}"),
Auth::None(none) => write!(f, "{}", none), Auth::None(none) => write!(f, "{none}"),
Auth::Token(token) => write!(f, "{}", token), Auth::Token(token) => write!(f, "{token}"),
Auth::RwToken(rw_token) => write!(f, "{}", rw_token), Auth::RwToken(rw_token) => write!(f, "{rw_token}"),
} }
} }
} }

View file

@ -107,8 +107,8 @@ impl StorageImpl for Storage {
impl Display for Storage { impl Display for Storage {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self { match self {
Storage::S3(s3) => write!(f, "{}", s3), Storage::S3(s3) => write!(f, "{s3}"),
Storage::FS(fs) => write!(f, "{}", fs), Storage::FS(fs) => write!(f, "{fs}"),
} }
} }
} }

View file

@ -128,7 +128,7 @@ impl StorageImpl for S3Storage {
&self.bucket, &self.bucket,
Some(&self.credentials), Some(&self.credentials),
// capitalize Doc to prevent conflicts with scope names // capitalize Doc to prevent conflicts with scope names
&format!("Doc/{}.gz", doc_hash), &format!("Doc/{doc_hash}.gz"),
) )
.sign(S3_SIGN_DURATION); .sign(S3_SIGN_DURATION);
@ -149,7 +149,7 @@ impl StorageImpl for S3Storage {
let object_url = GetObject::new( let object_url = GetObject::new(
&self.bucket, &self.bucket,
Some(&self.credentials), Some(&self.credentials),
&format!("Doc/{}.gz", doc_hash), &format!("Doc/{doc_hash}.gz"),
) )
.sign(S3_SIGN_DURATION); .sign(S3_SIGN_DURATION);