Skip to content

Commit

Permalink
chore: update dependencies (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucacasonato authored Nov 12, 2024
1 parent be82f65 commit a9eb782
Show file tree
Hide file tree
Showing 16 changed files with 94 additions and 138 deletions.
113 changes: 44 additions & 69 deletions Cargo.lock

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

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ authors = ["the Deno authors"]
edition = "2021"

[workspace.dependencies]
denokv_proto = { version = "0.8.3", path = "./proto" }
denokv_sqlite = { version = "0.8.3", path = "./sqlite" }
denokv_remote = { version = "0.8.3", path = "./remote" }
denokv_timemachine = { version = "0.8.3", path = "./timemachine" }
denokv_proto = { version = "0.8.4", path = "./proto" }
denokv_sqlite = { version = "0.8.4", path = "./sqlite" }
denokv_remote = { version = "0.8.4", path = "./remote" }
denokv_timemachine = { version = "0.8.4", path = "./timemachine" }

anyhow = "1"
async-stream = "0.3"
Expand All @@ -35,8 +35,8 @@ hyper = { version = "0.14", features = ["client"] }
hyper-proxy = { version = "0.9.1", default-features = false }
log = "0.4.20"
num-bigint = "0.4"
prost = "0.11"
prost-build = "0.11"
prost = "0.13"
prost-build = "0.13"
rand = "0.8.5"
reqwest = { version = "0.12.4", default-features = false, features = ["json", "stream"] }
rusqlite = "0.32.0"
Expand Down
4 changes: 2 additions & 2 deletions denokv/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "denokv"
version = "0.8.3"
version = "0.8.4"
description = "A self-hosted backend for Deno KV"
edition.workspace = true
license.workspace = true
Expand Down Expand Up @@ -51,4 +51,4 @@ num-bigint.workspace = true
tempfile.workspace = true
reqwest.workspace = true
url.workspace = true
v8_valueserializer.workspace = true
v8_valueserializer.workspace = true
2 changes: 1 addition & 1 deletion denokv/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ async fn run_sync(
) -> anyhow::Result<()> {
let mut s3_config = aws_config::from_env()
.sleep_impl(Arc::new(TokioSleep::new()))
.retry_config(RetryConfig::standard().with_max_attempts(std::u32::MAX));
.retry_config(RetryConfig::standard().with_max_attempts(u32::MAX));

if let Some(endpoint) = &options.s3_endpoint {
s3_config = s3_config.endpoint_url(endpoint);
Expand Down
2 changes: 1 addition & 1 deletion npm/napi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ rand = "0.8.5"
rand_distr = "0.3.0"
tokio = { version = "1.33.0", features = ["full"] }
anyhow = "1"
prost = "0.11"
prost = "0.13"
once_cell = "1.18.0"
rusqlite = { version = "0.32.0", features = ["bundled"] }

Expand Down
Loading

0 comments on commit a9eb782

Please sign in to comment.