update keyvaluedb

This commit is contained in:
Christien Rioux
2023-09-21 15:53:25 -04:00
parent 2627a22597
commit 0a7f21ce00
10 changed files with 94 additions and 103 deletions

View File

@@ -83,7 +83,7 @@ thiserror = "1.0.48"
# Data structures
enumset = { version = "1.1.2", features = ["serde"] }
keyvaluedb = "0.1.0"
keyvaluedb = "0.1.1"
range-set-blaze = "0.1.9"
weak-table = "0.3.2"
hashlink = { package = "veilid-hashlink", version = "0.1.0", features = [
@@ -128,7 +128,7 @@ trust-dns-resolver = { version = "0.23.0", optional = true }
enum-as-inner = "=0.6.0" # temporary fix for trust-dns-resolver v0.22.0
# Serialization
capnp = { version = "0.18.1", default-features = false, features = [ "alloc" ] }
capnp = { version = "0.18.1", default-features = false, features = ["alloc"] }
serde = { version = "1.0.188", features = ["derive"] }
serde_json = { version = "1.0.107" }
serde-big-array = "0.5.1"
@@ -166,10 +166,10 @@ futures-util = { version = "0.3.28", default-features = false, features = [
# Data structures
keyring-manager = "0.5.0"
keyvaluedb-sqlite = "0.1.0"
keyvaluedb-sqlite = "0.1.1"
# Network
async-tungstenite = { version = "0.23.0", features = [ "async-tls" ] }
async-tungstenite = { version = "0.23.0", features = ["async-tls"] }
igd = { package = "veilid-igd", version = "0.1.0" }
async-tls = "0.12.0"
webpki = "0.22.1"
@@ -209,7 +209,7 @@ wasm-logger = "0.2.0"
tracing-wasm = "0.2.1"
# Data Structures
keyvaluedb-web = "0.1.0"
keyvaluedb-web = "0.1.1"
### Configuration for WASM32 'web-sys' crate
[target.'cfg(target_arch = "wasm32")'.dependencies.web-sys]
@@ -258,12 +258,6 @@ windows-permissions = "0.2.4"
[target.'cfg(target_os = "ios")'.dependencies]
tracing-oslog = { version = "0.1.2", optional = true }
# Rusqlite configuration to ensure platforms that don't come with sqlite get it bundled
# Except WASM which doesn't use sqlite
[target.'cfg(all(not(target_os = "ios"),not(target_os = "android"),not(target_arch = "wasm32")))'.dependencies.rusqlite]
version = "0.29.0"
features = ["bundled"]
### DEV DEPENDENCIES
[dev-dependencies]