Dependencies upgrade

This commit is contained in:
Dave
2026-03-14 11:44:51 +00:00
parent 1dcf043c53
commit 5f7647cbda
3 changed files with 7 additions and 5 deletions

2
Cargo.lock generated
View File

@@ -1952,6 +1952,7 @@ version = "0.35.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "133c182a6a2c87864fe97778797e46c7e999672690dc9fa3ee8e241aa4a9c13f"
dependencies = [
"cc",
"pkg-config",
"vcpkg",
]
@@ -4007,6 +4008,7 @@ dependencies = [
"futures",
"homedir",
"ignore",
"libsqlite3-sys",
"matrix-sdk",
"mime_guess",
"mockito",

View File

@@ -24,8 +24,8 @@ serde_yaml = "0.9"
strip-ansi-escapes = "0.2"
tempfile = "3"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync"] }
toml = "1.0.3"
uuid = { version = "1.21.0", features = ["v4", "serde"] }
toml = "1.0.6"
uuid = { version = "1.22.0", features = ["v4", "serde"] }
tokio-tungstenite = "0.28.0"
walkdir = "2.5.0"
filetime = "0.2"
@@ -37,6 +37,3 @@ matrix-sdk = { version = "0.16.0", default-features = false, features = [
pulldown-cmark = { version = "0.13.1", default-features = false, features = [
"html",
] }
# Force bundled SQLite so static musl builds don't need a system libsqlite3
libsqlite3-sys = { version = "*", features = ["bundled"] }

View File

@@ -31,6 +31,9 @@ walkdir = { workspace = true }
matrix-sdk = { workspace = true }
pulldown-cmark = { workspace = true }
# Force bundled SQLite so static musl builds don't need a system libsqlite3
libsqlite3-sys = { version = "0.36.0", features = ["bundled"] }
[dev-dependencies]
tempfile = { workspace = true }
tokio-tungstenite = { workspace = true }