Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
losfair committed Dec 17, 2023
1 parent aff253c commit 9b85c23
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions npm/napi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
[package]
authors = []
edition = "2021"
name = "deno-kv-napi"
version = "0.0.0" # never published
name = "deno-kv-napi"
version = "0.0.0" # never published

[lib]
crate-type = ["cdylib"]

[dependencies]
futures = "0.3.28"
napi = {version="2", features=["async","anyhow"]}
napi = { version = "2", features = ["async", "anyhow"] }
napi-derive = "2"
denokv_sqlite = { path = "../../sqlite" }
denokv_proto = { path = "../../proto" }
Expand All @@ -21,7 +21,7 @@ tokio = { version = "1.33.0", features = ["full"] }
anyhow = "1"
prost = "0.11"
once_cell = "1.18.0"
rusqlite = "0.29.0"
rusqlite = { version = "0.29.0", features = ["bundled"] }

[build-dependencies]
napi-build = "2"
Expand Down

0 comments on commit 9b85c23

Please sign in to comment.