Skip to content

Commit

Permalink
lockfile, lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
JMBeresford committed Nov 19, 2024
1 parent 9190398 commit 7113ef2
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 5 deletions.
1 change: 0 additions & 1 deletion packages/service/src/config/mod.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
use config::{Config, ConfigError, File};
use retrom_codegen::retrom::StorageType;
use serde::{Deserialize, Serialize};
use serde_json::Value;

#[derive(Debug, Deserialize, Serialize)]
pub struct ConnectionConfig {
Expand Down
2 changes: 1 addition & 1 deletion packages/service/src/grpc/library/metadata_handlers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ use retrom_codegen::{
},
};
use retrom_db::schema;
use tracing::{info, info_span, instrument, Instrument};
use tracing::{info_span, instrument, Instrument};

#[instrument(skip(state))]
pub async fn update_metadata(
Expand Down
2 changes: 1 addition & 1 deletion packages/service/src/providers/igdb/platforms.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use retrom_codegen::{
igdb,
retrom::{self},
};
use tracing::{debug, error, info, instrument, warn, Instrument, Level};
use tracing::{debug, error, instrument, warn, Instrument, Level};

use super::provider::IGDBProvider;

Expand Down
3 changes: 1 addition & 2 deletions packages/service/src/rest/game.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@ use futures::AsyncWriteExt;
use http::header;
use retrom_codegen::retrom;
use retrom_db::Pool;
use tokio::io::AsyncReadExt;
use tokio_util::{compat::FuturesAsyncWriteCompatExt, io::ReaderStream};
use tracing::{debug, instrument, warn};
use tracing::{instrument, warn};
use walkdir::WalkDir;
use warp::{filters::BoxedFilter, Filter};

Expand Down
19 changes: 19 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 7113ef2

Please sign in to comment.