Skip to content

Commit

Permalink
Upgrade all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
spotlightishere committed Oct 15, 2024
1 parent a4a3cd4 commit 9b74edb
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 33 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ edition = "2021"
rust-version = "1.81"

[workspace.dependencies]
bollard = "0.17.0"
testcontainers = "0.23.0"
bollard = "0.17.1"
testcontainers = "0.23.1"
12 changes: 6 additions & 6 deletions crates/azure/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,21 +35,21 @@ serde = ["dep:serde"]
log = ["dep:log"]

[dependencies]
async-trait = "0.1.80"
async-trait = "0.1.83"
azure_core = "0.20.0"
azure_storage = "0.20.0"
azure_storage_blobs = "0.20.0"
bytes = "1.6.0"
futures-util = "0.3.30"
log = { version = "0.4.21", optional = true }
bytes = "1.7.2"
futures-util = "0.3.31"
log = { version = "0.4.22", optional = true }
remi = { path = "../../remi", version = "0.9.0" }
serde = { version = "1.0.200", features = ["derive"], optional = true }
serde = { version = "1.0.210", features = ["derive"], optional = true }
tracing = { version = "0.1.40", optional = true }

[dev-dependencies]
bollard.workspace = true
testcontainers.workspace = true
tokio = { version = "1.37.0", features = ["macros", "rt"] }
tokio = { version = "1.40.0", features = ["macros", "rt"] }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"

Expand Down
16 changes: 8 additions & 8 deletions crates/fs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,25 +38,25 @@ serde = ["dep:serde"]
log = ["dep:log"]

[dependencies]
async-trait = "0.1.80"
bytes = "1.6.0"
async-trait = "0.1.83"
bytes = "1.7.2"
dirs = "5.0.1"
file-format = { version = "0.25.0", features = ["reader-txt"], optional = true }
infer = { version = "0.16.0", default-features = false, optional = true }
log = { version = "0.4.21", optional = true }
log = { version = "0.4.22", optional = true }
remi = { path = "../../remi", version = "0.9.0" }
serde = { version = "1.0.200", features = ["derive"], optional = true }
serde_json = { version = "1.0.116", optional = true }
serde = { version = "1.0.210", features = ["derive"], optional = true }
serde_json = { version = "1.0.128", optional = true }
serde_yaml = { version = "0.9.34", optional = true }
tokio = { version = "1.37.0", features = ["fs", "io-util"] }
tokio = { version = "1.40.0", features = ["fs", "io-util"] }
tracing = { version = "0.1.40", optional = true }

[package.metadata.docs.rs]
all-features = true

[dev-dependencies]
tempfile = "3.10.1"
tokio = { version = "1.37.0", features = ["macros", "rt", "fs", "io-util"] }
tempfile = "3.13.0"
tokio = { version = "1.40.0", features = ["macros", "rt", "fs", "io-util"] }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"

Expand Down
16 changes: 8 additions & 8 deletions crates/gridfs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,20 +35,20 @@ serde = ["dep:serde"]
log = ["dep:log"]

[dependencies]
async-trait = "0.1.80"
bytes = "1.6.0"
futures-util = "0.3.30"
log = { version = "0.4.21", optional = true }
mongodb = "3.0.0"
async-trait = "0.1.83"
bytes = "1.7.2"
futures-util = "0.3.31"
log = { version = "0.4.22", optional = true }
mongodb = "3.1.0"
remi = { path = "../../remi", version = "0.9.0" }
serde = { version = "1.0.200", features = ["derive"], optional = true }
tokio-util = "0.7.11"
serde = { version = "1.0.210", features = ["derive"], optional = true }
tokio-util = "0.7.12"
tracing = { version = "0.1.40", optional = true }

[dev-dependencies]
bollard.workspace = true
testcontainers.workspace = true
tokio = { version = "1.37.0", features = ["rt", "macros"] }
tokio = { version = "1.40.0", features = ["rt", "macros"] }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"

Expand Down
18 changes: 9 additions & 9 deletions crates/s3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,21 +35,21 @@ serde = ["dep:serde"]
log = ["dep:log"]

[dependencies]
async-trait = "0.1.80"
aws-config = "1.3.0"
aws-credential-types = "1.2.0"
aws-sdk-s3 = { version = "1.25.0", features = ["behavior-version-latest"] }
aws-smithy-runtime-api = "1.5.0"
bytes = "1.6.0"
log = { version = "0.4.21", optional = true }
async-trait = "0.1.83"
aws-config = "1.5.8"
aws-credential-types = "1.2.1"
aws-sdk-s3 = { version = "1.56.0", features = ["behavior-version-latest"] }
aws-smithy-runtime-api = "1.7.2"
bytes = "1.7.2"
log = { version = "0.4.22", optional = true }
remi = { path = "../../remi", version = "0.9.0" }
serde = { version = "1.0.200", features = ["derive"], optional = true }
serde = { version = "1.0.210", features = ["derive"], optional = true }
tracing = { version = "0.1.40", optional = true }

[dev-dependencies]
bollard.workspace = true
testcontainers.workspace = true
tokio = { version = "1.37.0", features = ["macros", "rt"] }
tokio = { version = "1.40.0", features = ["macros", "rt"] }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"

Expand Down

0 comments on commit 9b74edb

Please sign in to comment.