-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
40 lines (37 loc) · 927 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
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "thoth-cli"
version = "0.1.66"
edition = "2021"
authors = [
"Joel Afriyie <[email protected]>",
"Joel Afriyie <[email protected]>",
]
description = "A terminal scratchpad akin to Heynote"
license = "MIT"
repository = "https://github.com/jooaf/thoth"
readme = "README.md"
keywords = ["terminal", "scratchpad", "note-taking"]
categories = ["command-line-utilities"]
[dependencies]
serde_json = "1.0"
syntect = "5.1"
pulldown-cmark = { version = "0.11.0" }
pulldown-cmark-to-cmark = "15.0.1"
ratatui = "0.27.0"
crossterm = { version = "0.27.0", features = ["bracketed-paste"] }
tui-textarea = "0.5.1"
anyhow = "1.0.86"
clap = { version = "4.3", features = ["derive"] }
dirs = "5.0"
atty = "0.2.14"
tempfile = "3.2"
syntect-tui = "3.0.2"
unicode-width = "0.1.10"
rand = "0.8.5"
once_cell = "1.19.0"
arboard = "3.4.1"
[[bin]]
name = "thoth"
path = "src/main.rs"
[dev-dependencies]
mockall = "0.11"