-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (33 loc) · 874 Bytes
/
Cargo.toml
File metadata and controls
37 lines (33 loc) · 874 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "docxtools"
version = "0.11.0-SNAPSHOT"
edition = "2021"
authors = ["David Bosschaert <david.bosschaert@gmail.com>", "contributors"]
license = "Apache-2.0"
description = "A command-line tool to work with docx files, for example to make bulk-changes in them without the need to open a word processor."
readme = "README.md"
keywords = ["cli", "docx"]
categories = ["command-line-utilities"]
[dependencies]
regex = "1.11"
tempfile = "3.8"
zip = "2.2.1"
walkdir = "2.3"
unicode-bom = "2.0"
clap = { version = "4.3.19", features = ["derive"] }
quick-xml = "0.37"
uuid = { version = "1.6", features = ["v4"] }
unicase = "2.7"
[dev-dependencies]
gag = "1.0"
serial_test = "3.2"
testdir = "0.9"
[profile.release]
opt-level = 'z' # Optimize for size.
lto = true
panic = 'abort'
codegen-units = 1
strip = true
[[bin]]
name = "docxtools"
path = "src/bin/main.rs"