mirror of
https://github.com/pesde-pkg/pesde.git
synced 2025-04-05 11:20:55 +01:00
style: enable lints in registry
This commit is contained in:
parent
2e02fecd46
commit
7150f6a7da
5 changed files with 15 additions and 9 deletions
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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}"),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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}"),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue