Skip to content

Commit

Permalink
0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lucacasonato committed Oct 26, 2023
1 parent 6fa4dea commit ab06eed
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ authors = ["the Deno authors"]
edition = "2021"

[workspace.dependencies]
denokv_proto = { version = "0.1.0", path = "./proto" }

anyhow = "1"
async-trait = "0.1"
chrono = { version = "0.4", features = ["serde"] }
Expand Down
1 change: 1 addition & 0 deletions proto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[package]
name = "denokv_proto"
description = "Fundamental types, traits, and protobuf models for denokv"
version = "0.1.0"
edition.workspace = true
license.workspace = true
Expand Down
3 changes: 2 additions & 1 deletion sqlite/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[package]
name = "denokv_sqlite"
description = "SQLite storage backend for Deno KV"
version = "0.1.0"
edition.workspace = true
license.workspace = true
Expand All @@ -17,7 +18,7 @@ bundled = ["rusqlite/bundled"]
anyhow.workspace = true
async-trait.workspace = true
chrono.workspace = true
denokv_proto = { path = "../proto" }
denokv_proto.workspace = true
futures.workspace = true
log.workspace = true
num-bigint.workspace = true
Expand Down

0 comments on commit ab06eed

Please sign in to comment.