-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathCargo.toml
More file actions
81 lines (73 loc) · 2.26 KB
/
Cargo.toml
File metadata and controls
81 lines (73 loc) · 2.26 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[workspace]
members = [
"crates/core",
"crates/markdownify",
"crates/rasteroid",
]
resolver = "3"
[profile.dist]
inherits = "release"
codegen-units = 1
lto = "fat"
[workspace.dependencies]
markdownify = { version = "0.3.4", path = "crates/markdownify" }
rasteroid = { version = "0.3.1", path = "crates/rasteroid" }
anyhow = "1.0.102"
clap = { version = "4.5.58", features = ["derive", "env"] }
clap_complete = "4.5.66"
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
tokio = { version = "1.49.0", default-features = false, features = ["macros"] }
tokio-tungstenite = "0.29.0"
mermaid-rs-renderer = { version = "0.2.1", default-features = false }
hayro = "0.6.0"
encoding_rs = "0.8.35"
infer = "0.19.0"
strip-ansi-escapes = "0.2.1"
which = "8.0.0"
rayon = "1.11.0"
itertools = "0.14.0"
inquire = "0.9.3"
shell-words = "1.1.1"
ignore = "0.4.25"
textwrap = "0.16.2"
comrak = "0.52.0"
crossterm = "0.29.0"
pelite = { version = "0.10.0", default-features = false, features = ["std"] }
image = { version = "0.25.9", default-features = false, features = ["bmp", "dds", "exr", "ff", "gif", "hdr", "ico", "jpeg", "png", "pnm", "qoi", "tga", "tiff", "webp"] }
jxl-oxide = { version = "0.12.5", features = ["image"] }
tempfile = "3.25.0"
ffmpeg-sidecar = { version = "2.4.0", default-features = false }
syntect = "5.3.0"
two-face = "0.5.1"
resvg = "0.47.0"
fontdb = "0.23.0"
serde_json = "1.0.149"
base64 = "0.22.1"
futures = "0.3.31"
unicode-width = "0.2.2"
dirs = "6.0.0"
scraper = "0.26.0"
reqwest = { version = "0.13.2", default-features = false, features = ["rustls", "stream"] }
indicatif = "0.18.3"
regex = "1.12.3"
boxcar = "0.2.14"
thiserror = "2.0.18"
zip = { version = "8.1.0", features = [ "deflate-flate2" ], default-features = false }
tar = "0.4.44"
flate2 = "1.1.9"
lzma-rust2 = { version = "0.16.2", default-features = false, features = ["std", "xz"] }
calamine = "0.34.0"
csv = "1.4.0"
quick-xml = "0.39.0"
shared_memory_fork = "0.12.5"
color_quant = "1.1.0"
rand = "0.10.0"
fast_image_resize = { version = "6.0.0", features = ["image"] }
signal-hook = "0.4.3"
libc = "0.2.183"
windows = { version = "0.62.2", features = ["Win32_Foundation", "Win32_UI_WindowsAndMessaging"] }
winreg = "0.56.0"
assert_cmd = "2.2.0"
predicates = "3.1.4"
indoc = "2.0.7"