update cargo deps

This commit is contained in:
Aiden McClelland
2025-06-05 13:29:20 -06:00
parent d8cabe2a65
commit f2f7c3141b
3 changed files with 9 additions and 15 deletions

View File

@@ -20,25 +20,19 @@ unstable = []
async-trait = "0.1.42" async-trait = "0.1.42"
fd-lock-rs = "0.1.3" fd-lock-rs = "0.1.3"
futures = "0.3.8" futures = "0.3.8"
imbl = "2" imbl = "4"
imbl-value = "0.1.2" imbl-value = "0.2.0"
json-patch = { path = "../json-patch" } json-patch = { path = "../json-patch" }
json-ptr = { path = "../json-ptr" } json-ptr = { path = "../json-ptr" }
lazy_static = "1.4.0" lazy_static = "1.4.0"
tracing = { version = "0.1.29", optional = true } tracing = { version = "0.1.29", optional = true }
tracing-error = { version = "0.2.0", optional = true } tracing-error = { version = "0.2.0", optional = true }
nix = "0.26.2" nix = "0.30.1"
patch-db-macro = { path = "../patch-db-macro" } patch-db-macro = { path = "../patch-db-macro" }
serde = { version = "1.0.118", features = ["rc"] } serde = { version = "1", features = ["rc"] }
serde_cbor = { path = "../cbor" } serde_cbor = { path = "../cbor" }
thiserror = "1.0.23" thiserror = "2"
tokio = { version = "1.0.1", features = [ tokio = { version = "1", features = ["sync", "fs", "rt", "io-util", "macros"] }
"sync",
"fs",
"rt",
"io-util",
"macros",
] }
[dev-dependencies] [dev-dependencies]
proptest = "1.0.0" proptest = "1.0.0"
@@ -51,4 +45,4 @@ tokio = { version = "1.0.1", features = [
"io-util", "io-util",
"macros", "macros",
] } ] }
rand = "0.8.4" rand = "0.9.1"