-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
29 lines (26 loc) · 902 Bytes
/
Cargo.toml
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
[package]
name = "markdown-reader"
description = "A simple markdown reader that uses ratatui to render markdown files."
version = "0.1.21"
documentation = "https://docs.rs/markdown-reader"
categories = ["command-line-interface"]
keywords = ["cli", "markdown", "ratatui", "terminal", "tui"]
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
authors.workspace = true
[dependencies]
clap = { version = "4.5.23", features = ["derive"] }
color-eyre = "0.6.3"
crossterm = "0.28.1"
itertools = "0.14.0"
ratatui = { workspace = true, default-features = true, features = ["unstable-widget-ref"] }
tracing = "0.1.41"
tracing-error = "0.2.1"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
time = { version = "0.3.37", features = ["formatting", "macros"] }
tui-markdown.workspace = true
[[bin]]
name = "mdr"
path = "src/main.rs"