Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ jobs:
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-debian
build: |-
set -e &&
rustup install 1.86.0 &&
rustup default 1.86.0 &&
rustup install 1.88.0 &&
rustup default 1.88.0 &&
apt-get update &&
apt-get -y install protobuf-compiler &&
yarn build --target x86_64-unknown-linux-gnu &&
Expand Down
18 changes: 9 additions & 9 deletions Cargo.lock

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

10 changes: 5 additions & 5 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.12.0", path = "./proto" }
denokv_sqlite = { version = "0.12.0", path = "./sqlite" }
denokv_remote = { version = "0.12.0", path = "./remote" }
denokv_timemachine = { version = "0.12.0", path = "./timemachine" }
denokv_proto = { version = "0.13.0", path = "./proto" }
denokv_sqlite = { version = "0.13.0", path = "./sqlite" }
denokv_remote = { version = "0.13.0", path = "./remote" }
denokv_timemachine = { version = "0.13.0", path = "./timemachine" }

anyhow = "1"
async-stream = "0.3"
Expand All @@ -39,7 +39,7 @@ prost = "0.13"
prost-build = "0.13"
rand = "0.8.5"
reqwest = { version = "0.12.4", default-features = false, features = ["json", "stream"] }
rusqlite = "0.34.0"
rusqlite = "0.37.0"
serde = { version = "1", features = ["derive"] }
serde_json = "1.0.107"
tempfile = "3"
Expand Down
2 changes: 1 addition & 1 deletion denokv/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "denokv"
version = "0.12.0"
version = "0.13.0"
description = "A self-hosted backend for Deno KV"
edition.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion npm/napi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ tokio = { version = "1.33.0", features = ["full"] }
anyhow = "1"
prost = "0.13"
once_cell = "1.18.0"
rusqlite = { version = "0.34.0", features = ["bundled"] }
rusqlite = { version = "0.37.0", features = ["bundled"] }
deno_error = "0.7.0"

[build-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion proto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "denokv_proto"
description = "Fundamental types, traits, and protobuf models for denokv"
version = "0.12.0"
version = "0.13.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion remote/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "denokv_remote"
description = "Remote (KV Connect) backend for Deno KV"
version = "0.12.0"
version = "0.13.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "1.86.0"
channel = "1.88.0"
components = ["rustfmt", "clippy"]
2 changes: 1 addition & 1 deletion sqlite/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "denokv_sqlite"
description = "SQLite storage backend for Deno KV"
version = "0.12.0"
version = "0.13.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand Down
3 changes: 1 addition & 2 deletions sqlite/backend.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ use num_bigint::BigInt;
use rand::Rng;
use rand::RngCore;
use rusqlite::params;
use rusqlite::DatabaseName;
use rusqlite::OptionalExtension;
use rusqlite::Transaction;
use thiserror::Error;
Expand Down Expand Up @@ -184,7 +183,7 @@ impl SqliteBackend {
rng: Box<dyn RngCore + Send>,
force_readonly: bool,
) -> Result<Self, SqliteBackendError> {
let readonly = force_readonly || conn.is_readonly(DatabaseName::Main)?;
let readonly = force_readonly || conn.is_readonly("main")?;
let mut this = Self {
conn,
rng,
Expand Down
2 changes: 1 addition & 1 deletion timemachine/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "denokv_timemachine"
description = "Point-in-time recovery tool for Deno KV"
version = "0.12.0"
version = "0.13.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand Down