forked from erikvullings/docx-parser
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (21 loc) · 727 Bytes
/
Cargo.toml
File metadata and controls
23 lines (21 loc) · 727 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "docx-parser"
version = "0.1.1"
edition = "2024"
authors = ["Erik Vullings <[email protected]>"]
description = "Parse Word and OpenOffice DOCX files, and output markdown or JSON"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/erikvullings/docx-parser"
keywords = ["docx", "markdown", "openoffice", "parser"]
categories = ["command-line-utilities", "encoding"]
[dependencies]
base64 = "0.22.1"
clap = { version = "4.5.26", features = ["derive"] }
docx-rust = "0.1.11"
# docx-rust = { git = "https://github.com/erikvullings/docx-rs.git" }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
[[bin]]
name = "docx-parser"
path = "src/main.rs"