forked from Canop/termimad
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (40 loc) · 1.11 KB
/
Cargo.toml
File metadata and controls
45 lines (40 loc) · 1.11 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
[package]
name = "termimad"
version = "0.33.0"
authors = ["dystroy <denys.seguret@gmail.com>"]
repository = "https://github.com/Canop/termimad"
description = "Markdown Renderer for the Terminal"
edition = "2021"
keywords = ["markdown", "terminal", "tui", "renderer", "parser"]
license = "MIT"
categories = ["command-line-interface", "text-processing", "template-engine"]
readme = "README.md"
rust-version = "1.56"
resolver = "1"
[features]
special-renders = []
default = ["special-renders"]
[dependencies]
coolor = { version="1.1.0", features=["crossterm"] }
crokey = "1.2.0"
lazy-regex = "3.4"
minimad = "0.13.0"
serde = { version = "1.0", features = ["derive"] }
thiserror = "2.0"
unicode-width = "0.1.11"
# cli-log = "2.0"
[dev-dependencies]
anyhow = "1.0"
cli-log = "2"
deser-hjson = "2"
pretty_assertions = "1.4"
serde_json = "1"
terminal-clipboard = "0.4.1"
[patch.crates-io]
# coolor = { path = "../coolor" }
# crokey = { path = "../crokey" }
# minimad = { path = "../minimad" }
# terminal-clipboard = { path = "../terminal-clipboard" }
# lazy-regex = { path = "../lazy-regex" }
[lints.clippy]
match_like_matches_macro = "allow"