Skip to content

Commit

Permalink
chore(deps)!: bump testcontainers to 0.19.0 (#152)
Browse files Browse the repository at this point in the history
  • Loading branch information
DDtKey authored Jun 28, 2024
1 parent 484b23d commit ccf4dd2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ cockroach_db = []
kwok = []

[dependencies]
testcontainers = { version = "0.18.0" }
testcontainers = { version = "0.19.0" }

[dev-dependencies]
async-nats = "0.35.0"
Expand All @@ -70,14 +70,14 @@ postgres = "0.19.7"
pretty_env_logger = "0.5.0"
rdkafka = "0.36.0"
redis = { version = "0.25.0", features = ["json"] }
reqwest = { version = "0.12.1", features = ["blocking", "json"] }
reqwest = { version = "0.12.5", features = ["blocking", "json", "rustls-tls", "rustls-tls-native-roots"], default-features = false }
retry = "2.0.0"
rustls = { version = "0.23.2", features = ["ring"] }
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"
surrealdb = { version = "1.2.0" }
tar = "0.4.40"
testcontainers = { version = "0.18.0", features = ["blocking"] }
testcontainers = { version = "0.19.0", features = ["blocking"] }
# To use Tiberius on macOS, rustls is needed instead of native-tls
# https://github.com/prisma/tiberius/tree/v0.12.2#encryption-tlsssl
tiberius = { version = "0.12.2", default-features = false, features = [
Expand Down
2 changes: 1 addition & 1 deletion src/minio/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ mod tests {
use aws_sdk_s3::{config::Credentials, Client};
use testcontainers::runners::AsyncRunner;

use crate::{minio, minio::MinIOServerCmd};
use crate::minio;

#[tokio::test]
async fn minio_buckets() -> Result<(), Box<dyn std::error::Error + 'static>> {
Expand Down

0 comments on commit ccf4dd2

Please sign in to comment.