[package]
edition = "2021"
name = "mdtui"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast terminal-based Markdown viewer and editor built with Rust."
readme = "README.md"
keywords = [
"markdown",
"terminal",
"tui",
"editor",
"cli",
]
categories = [
"command-line-utilities",
"text-editors",
]
license = "MIT"
repository = "https://github.com/PPRAMANIK62/mdt"
[[bin]]
name = "mdtui"
path = "src/main.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.crossterm]
version = "0.29"
[dependencies.fs2]
version = "0.4"
[dependencies.fuzzy-matcher]
version = "0.3"
[dependencies.notify]
version = "7"
[dependencies.open]
version = "5"
[dependencies.pulldown-cmark]
version = "0.13"
features = ["simd"]
default-features = false
[dependencies.ratatui]
version = "0.30"
[dependencies.ratatui-textarea]
version = "0.8"
[dependencies.syntect]
version = "5"
features = ["default-fancy"]
default-features = false
[dependencies.terminal-colorsaurus]
version = "1"
[dependencies.tui-tree-widget]
version = "0.24"
[dependencies.unicode-segmentation]
version = "1"
[dependencies.unicode-width]
version = "0.2"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
doc_markdown = "allow"
elidable_lifetime_names = "allow"
items_after_statements = "allow"
map_unwrap_or = "allow"
match_same_arms = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
struct_excessive_bools = "allow"
too_many_lines = "allow"
uninlined_format_args = "allow"
wildcard_imports = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1