-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (28 loc) · 804 Bytes
/
Cargo.toml
File metadata and controls
33 lines (28 loc) · 804 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
[package]
name = "any2md"
version = "0.1.0"
edition = "2021"
description = "CLI utility for converting files to Markdown"
[dependencies]
clap = { version = "4", features = ["derive"] }
lopdf = "0.34"
image = "0.25"
png = "0.18"
flate2 = "1"
base64 = "0.22"
thiserror = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
tracing-appender = "0.2"
# Audio converter
whisper-rs = "0.12"
cpal = "0.15"
symphonia = { version = "0.5", features = ["mp3", "ogg", "flac", "wav", "aac"] }
# Web converter
reqwest = { version = "0.12", features = ["blocking", "multipart", "json"] }
scraper = "0.21"
# Image OCR converter (uses tesseract CLI or cloud API — no system build deps)
# Shared
dirs = "5"
serde = { version = "1", features = ["derive"] }
serde_json = "1"