-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (26 loc) · 861 Bytes
/
Copy pathCargo.toml
File metadata and controls
28 lines (26 loc) · 861 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
[package]
name = "mdvi"
version = "0.6.6"
edition = "2021"
description = "Professional markdown viewer for the terminal with Vim-style navigation"
license = "MIT"
readme = "README.md"
keywords = ["markdown", "cli", "viewer", "terminal", "tui"]
categories = ["command-line-utilities", "text-processing"]
[dependencies]
anyhow = "1.0"
arboard = "3.6"
clap = { version = "4.5", features = ["derive"] }
crossterm = "0.28"
pulldown-cmark = "0.12"
ratatui = "0.29"
regex = "1.11"
image = "0.25"
ratatui-image = { version = "8.1", default-features = false, features = ["crossterm", "image-defaults"] }
reqwest = { version = "0.12", default-features = false, features = ["blocking", "rustls-tls"] }
syntect = { version = "5.3", default-features = false, features = ["default-fancy"] }
unicode-width = "0.1"
[profile.release]
lto = true
codegen-units = 1
strip = true