From 3b35cb45e3f13dc3069a4beafd53efcf4887f3ed Mon Sep 17 00:00:00 2001 From: Nugine Date: Thu, 1 Jun 2023 14:25:37 +0800 Subject: [PATCH] deps: upgrade --- Cargo.toml | 1 + codegen/Cargo.toml | 2 +- crates/s3s-aws/Cargo.toml | 6 +++--- crates/s3s-fs/Cargo.toml | 16 ++++++++-------- crates/s3s-proxy/Cargo.toml | 8 ++++---- crates/s3s/Cargo.toml | 4 ++-- 6 files changed, 19 insertions(+), 18 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8221a657..ecac67c0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,2 +1,3 @@ [workspace] members = ["crates/*", "codegen"] +resolver = "2" diff --git a/codegen/Cargo.toml b/codegen/Cargo.toml index 85928c07..471ed994 100644 --- a/codegen/Cargo.toml +++ b/codegen/Cargo.toml @@ -9,7 +9,7 @@ codegen-writer = "0.2.0" heck = "0.4.1" nugine-rust-utils = "0.3.1" numeric_cast = "0.2.1" -regex = "1.8.1" +regex = "1.8.3" serde = { version = "1.0.163", features = ["derive"] } serde_json = { version = "1.0.96", features = ["preserve_order"] } serde_urlencoded = "0.7.1" diff --git a/crates/s3s-aws/Cargo.toml b/crates/s3s-aws/Cargo.toml index b813c463..aff139e3 100644 --- a/crates/s3s-aws/Cargo.toml +++ b/crates/s3s-aws/Cargo.toml @@ -12,9 +12,9 @@ categories = ["web-programming", "web-programming::http-server"] [dependencies] async-trait = "0.1.68" aws-sdk-s3 = "0.28.0" -aws-smithy-http = { version = "0.55.2", features = ["event-stream"] } -aws-smithy-types = "0.55.2" -aws-smithy-types-convert = { version = "0.55.2", features = ["convert-time"] } +aws-smithy-http = { version = "0.55.3", features = ["event-stream"] } +aws-smithy-types = "0.55.3" +aws-smithy-types-convert = { version = "0.55.3", features = ["convert-time"] } bytes = "1.4.0" futures = { version = "0.3.28", default-features = false, features = ["std"] } hyper = "0.14.26" diff --git a/crates/s3s-fs/Cargo.toml b/crates/s3s-fs/Cargo.toml index 72018623..bc54dcdc 100644 --- a/crates/s3s-fs/Cargo.toml +++ b/crates/s3s-fs/Cargo.toml @@ -20,8 +20,8 @@ binary = ["tokio/full", "dep:clap", "dep:tracing-subscriber", "dep:hyper"] async-trait = "0.1.68" base64-simd = "0.8.0" bytes = "1.4.0" -chrono = { version = "0.4.24", default-features = false, features = ["std", "clock"] } -clap = { version = "4.2.7", optional = true, features = ["derive"] } +chrono = { version = "0.4.26", default-features = false, features = ["std", "clock"] } +clap = { version = "4.3.0", optional = true, features = ["derive"] } futures = "0.3.28" hex-simd = "0.8.0" hyper = { version = "0.14.26", optional = true, features = ["full"] } @@ -34,20 +34,20 @@ s3s = { version = "0.6.0-dev", path = "../s3s" } serde_json = "1.0.96" thiserror = "1.0.40" time = "0.3.21" -tokio = { version = "1.28.1", features = ["fs", "io-util"] } +tokio = { version = "1.28.2", features = ["fs", "io-util"] } tokio-util = { version = "0.7.8", features = ["io"] } tracing = "0.1.37" tracing-error = "0.2.0" tracing-subscriber = { version = "0.3.17", optional = true, features = ["env-filter", "time"] } transform-stream = "0.3.0" -uuid = { version = "1.3.2", features = ["v4"] } +uuid = { version = "1.3.3", features = ["v4"] } [dev-dependencies] anyhow = { version = "1.0.71", features = ["backtrace"] } -aws-config = "0.55.2" -aws-credential-types = { version = "0.55.2", features = ["test-util"] } +aws-config = "0.55.3" +aws-credential-types = { version = "0.55.3", features = ["test-util"] } aws-sdk-s3 = "0.28.0" -once_cell = "1.17.1" +once_cell = "1.17.2" s3s-aws = { version = "0.6.0-dev", path = "../s3s-aws" } -tokio = { version = "1.28.1", features = ["full"] } +tokio = { version = "1.28.2", features = ["full"] } tracing-subscriber = { version = "0.3.17", features = ["env-filter", "time"] } diff --git a/crates/s3s-proxy/Cargo.toml b/crates/s3s-proxy/Cargo.toml index ac1bd5e4..27fde49b 100644 --- a/crates/s3s-proxy/Cargo.toml +++ b/crates/s3s-proxy/Cargo.toml @@ -5,13 +5,13 @@ edition = "2021" publish = false [dependencies] -aws-config = "0.55.2" -aws-credential-types = "0.55.2" +aws-config = "0.55.3" +aws-credential-types = "0.55.3" aws-sdk-s3 = "0.28.0" -clap = { version = "4.2.7", features = ["derive"] } +clap = { version = "4.3.0", features = ["derive"] } hyper = { version = "0.14.26", features = ["full"] } s3s = { version = "0.6.0-dev", path = "../s3s" } s3s-aws = { version = "0.6.0-dev", path = "../s3s-aws" } -tokio = { version = "1.28.1", features = ["full"] } +tokio = { version = "1.28.2", features = ["full"] } tracing = "0.1.37" tracing-subscriber = { version = "0.3.17", features = ["env-filter", "time"] } diff --git a/crates/s3s/Cargo.toml b/crates/s3s/Cargo.toml index 877a48a9..011416ae 100644 --- a/crates/s3s/Cargo.toml +++ b/crates/s3s/Cargo.toml @@ -20,7 +20,7 @@ atoi = { version = "2.0.0", default-features = false } base64-simd = "0.8.0" bytes = "1.4.0" bytestring = "1.3.0" -chrono = { version = "0.4.24", default-features = false } +chrono = { version = "0.4.26", default-features = false } crc32fast = "1.3.2" futures = { version = "0.3.28", default-features = false, features = ["std"] } hex-simd = "0.8.0" @@ -47,4 +47,4 @@ urlencoding = "2.1.2" zeroize = "1.6.0" [dev-dependencies] -tokio = { version = "1.28.1", features = ["full"] } +tokio = { version = "1.28.2", features = ["full"] }