Unverified Commit e0cca58b authored by Nugine's avatar Nugine
Browse files

deps: upgrade

parent 57504e3d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -8,5 +8,5 @@ publish = false
heck = "0.4.1"
regex = "1.7.1"
serde = { version = "1.0.152", features = ["derive"] }
serde_json = { version = "1.0.92", features = ["preserve_order"] }
serde_json = { version = "1.0.93", features = ["preserve_order"] }
serde_urlencoded = "0.7.1"
+3 −3
Original line number Diff line number Diff line
@@ -12,9 +12,9 @@ categories = ["web-programming", "web-programming::http-server"]
[dependencies]
async-trait = "0.1.64"
aws-sdk-s3 = "0.24.0"
aws-smithy-http = { version = "0.54.1", features = ["event-stream"] }
aws-smithy-types = "0.54.1"
aws-smithy-types-convert = { version = "0.54.1", features = ["convert-time"] }
aws-smithy-http = { version = "0.54.4", features = ["event-stream"] }
aws-smithy-types = "0.54.4"
aws-smithy-types-convert = { version = "0.54.4", features = ["convert-time"] }
bytes = "1.4.0"
futures = { version = "0.3.26", default-features = false, features = ["std"] }
hyper = "0.14.24"
+7 −7
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ async-trait = "0.1.64"
base64-simd = "0.8.0"
bytes = "1.4.0"
chrono = { version = "0.4.23", default-features = false, features = ["std", "clock"] }
clap = { version = "4.1.4", optional = true, features = ["derive"] }
clap = { version = "4.1.8", optional = true, features = ["derive"] }
futures = "0.3.26"
hex-simd = "0.8.0"
hyper = { version = "0.14.24", optional = true, features = ["full"] }
@@ -30,11 +30,11 @@ mime = "0.3.16"
numeric_cast = "0.2.1"
path-absolutize = "3.0.14"
s3s = { version = "0.3.3-dev", path = "../s3s" }
serde_json = "1.0.92"
serde_json = "1.0.93"
thiserror = "1.0.38"
time = "0.3.17"
tokio = { version = "1.25.0", features = ["fs", "io-util"] }
tokio-util = { version = "0.7.4", features = ["io"] }
time = "0.3.20"
tokio = { version = "1.26.0", features = ["fs", "io-util"] }
tokio-util = { version = "0.7.7", features = ["io"] }
tracing = "0.1.37"
tracing-error = "0.2.0"
tracing-subscriber = { version = "0.3.16", optional = true, features = ["env-filter", "time"] }
@@ -46,7 +46,7 @@ anyhow = { version = "1.0.69", features = ["backtrace"] }
aws-config = "0.54.1"
aws-credential-types = { version = "0.54.1", features = ["test-util"] }
aws-sdk-s3 = "0.24.0"
once_cell = "1.17.0"
once_cell = "1.17.1"
s3s-aws = { version = "0.3.3-dev", path = "../s3s-aws" }
tokio = { version = "1.25.0", features = ["full"] }
tokio = { version = "1.26.0", features = ["full"] }
tracing-subscriber = { version = "0.3.16", features = ["env-filter", "time"] }
+2 −2
Original line number Diff line number Diff line
@@ -8,10 +8,10 @@ publish = false
aws-config = "0.54.1"
aws-credential-types = "0.54.1"
aws-sdk-s3 = "0.24.0"
clap = { version = "4.1.4", features = ["derive"] }
clap = { version = "4.1.8", features = ["derive"] }
hyper = { version = "0.14.24", features = ["full"] }
s3s = { version = "0.3.3-dev", path = "../s3s" }
s3s-aws = { version = "0.3.3-dev", path = "../s3s-aws" }
tokio = { version = "1.25.0", features = ["full"] }
tokio = { version = "1.26.0", features = ["full"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.16", features = ["env-filter", "time"] }
+2 −3
Original line number Diff line number Diff line
@@ -28,7 +28,6 @@ hex-simd = "0.8.0"
hmac = "0.12.1"
http-body = "0.4.5"
httparse = "1.8.0"
# TODO(blocking): upgrade to hyper 1.0.0
hyper = { version = "0.14.24", features = ["stream"] }
memchr = "2.5.0"
mime = "0.3.16"
@@ -41,10 +40,10 @@ sha1 = "0.10.5"
sha2 = "0.10.6"
smallvec = "1.10.0"
thiserror = "1.0.38"
time = { version = "0.3.17", features = ["formatting", "parsing", "macros"] }
time = { version = "0.3.20", features = ["formatting", "parsing", "macros"] }
tracing = "0.1.37"
transform-stream = "0.3.0"
urlencoding = "2.1.2"

[dev-dependencies]
tokio = { version = "1.25.0", features = ["full"] }
tokio = { version = "1.26.0", features = ["full"] }
Loading