Skip to content

Commit

Permalink
Bump s3s* crates to 0.5.x
Browse files Browse the repository at this point in the history
  • Loading branch information
brainstorm committed May 4, 2023
1 parent 0d979ef commit ffe8a32
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 49 deletions.
52 changes: 11 additions & 41 deletions Cargo.lock

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

2 changes: 0 additions & 2 deletions htsget-actix/src/handlers/get.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ use crate::AppState;
use super::handle_response;

/// GET request reads endpoint
#[allow(clippy::let_with_type_underscore)]
#[instrument(skip(app_state))]
pub async fn reads<H: HtsGet + Send + Sync + 'static>(
request: Query<HashMap<String, String>>,
Expand All @@ -37,7 +36,6 @@ pub async fn reads<H: HtsGet + Send + Sync + 'static>(
}

/// GET request variants endpoint
#[allow(clippy::let_with_type_underscore)]
#[instrument(skip(app_state))]
pub async fn variants<H: HtsGet + Send + Sync + 'static>(
request: Query<HashMap<String, String>>,
Expand Down
2 changes: 0 additions & 2 deletions htsget-actix/src/handlers/post.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ use crate::AppState;
use super::handle_response;

/// POST request reads endpoint
#[allow(clippy::let_with_type_underscore)]
#[instrument(skip(app_state))]
pub async fn reads<H: HtsGet + Send + Sync + 'static>(
request: Json<PostRequest>,
Expand All @@ -33,7 +32,6 @@ pub async fn reads<H: HtsGet + Send + Sync + 'static>(
}

/// POST request variants endpoint
#[allow(clippy::let_with_type_underscore)]
#[instrument(skip(app_state))]
pub async fn variants<H: HtsGet + Send + Sync + 'static>(
request: Json<PostRequest>,
Expand Down
1 change: 0 additions & 1 deletion htsget-actix/src/handlers/service_info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ use crate::handlers::pretty_json::PrettyJson;
use crate::AppState;

/// Gets the JSON to return for a service-info endpoint
#[allow(clippy::let_with_type_underscore)]
#[instrument(skip(app_state))]
pub fn get_service_info_json<H: HtsGet + Send + Sync + 'static>(
app_state: &AppState<H>,
Expand Down
6 changes: 3 additions & 3 deletions htsget-search/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ tempfile = "3.3"
data-url = "0.2"

# S3 storage testing
s3s = { git="https://github.com/Nugine/s3s", version = "0.5.0-dev" }
s3s-fs = { git="https://github.com/Nugine/s3s", version = "0.5.0-dev" }
s3s-aws = { git="https://github.com/Nugine/s3s", version = "0.5.0-dev" }
s3s = { version = "0.5" }
s3s-fs = { version = "0.5" }
s3s-aws = { version = "0.5" }

# Axum server
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls"] }
Expand Down

0 comments on commit ffe8a32

Please sign in to comment.