dir-odt-to-pdf/Cargo.toml
Jesús Pérex 98a9649bf2 refactor: improve code to more idiomatic
- Use lib.rs for library mode and used with log tests
- Improve enum for tasks on files with file_type.rs
- Fix main and directory_processing
- Add Errors
- Adjust loggint.rs with OneLock and Atomic to control with parallel tests
- Add test.rs for unitary tests
2025-05-27 00:58:59 +01:00

21 lines
453 B
TOML

[package]
name = "dir-odt-to-pdf"
version = "0.1.0"
description = "Convert source directory with odt files to target path with pdf files"
authors = ["Jesús Pérez <jpl@jesusperez.pro>"]
edition = "2024"
[dependencies]
clap = { version = "4.5.38", features = ["derive"] }
which = "7.0.3"
log = "0.4"
env_logger = "0.11.8"
thiserror = "2.0.12"
tempfile = "3.8"
chrono = "0.4"
structopt = "0.3"
[dev-dependencies]
serial_test = "3.2.0"
tempfile = "3.8"