added crate [docx-to-md](https://github.com/nilskruthoff/docx-parser) to cargo.toml

This commit is contained in:
Nils Kruthoff 2026-07-27 19:31:34 +02:00
parent df4663fff4
commit 7a343ae833
No known key found for this signature in database
GPG Key ID: A5C0151B4DDB172C
2 changed files with 16 additions and 0 deletions

15
runtime/Cargo.lock generated
View File

@ -1990,6 +1990,20 @@ dependencies = [
"strsim 0.10.0",
]
[[package]]
name = "docx-to-md"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ff66168dc94c192d9372fa8fa8201900bd6f2b1edfbbdd2674a2e69c98073b6"
dependencies = [
"base64 0.22.1",
"image",
"quick-xml 0.41.0",
"thiserror 2.0.18",
"url",
"zip 8.6.0",
]
[[package]]
name = "dom_query"
version = "0.27.0"
@ -4254,6 +4268,7 @@ dependencies = [
"dbus-secret-service",
"dbus-secret-service-keyring-store",
"dirs",
"docx-to-md",
"file-format",
"flexi_logger",
"futures",

View File

@ -50,6 +50,7 @@ sys-locale = "0.3.2"
whoami = "2.1.2"
cfg-if = "1.0.4"
pptx-to-md = "1.0.0"
docx-to-md = "0.1.0"
tempfile = "3.27.0"
strum_macros = "0.28.0"
sysinfo = "0.39.6"