-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (46 loc) · 1.1 KB
/
Copy pathCargo.toml
File metadata and controls
50 lines (46 loc) · 1.1 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
46
47
48
49
50
[package]
name = "thoth-cli"
version = "0.1.88"
edition = "2021"
authors = [
"Joel Afriyie <joel.o.afriyie@gmail.com>",
"Joel Afriyie <oren.beani@gmail.com>",
]
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"]
[profile.release]
codegen-units = 1
lto = true
[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
toml = "0.8"
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"
fuzzy-matcher = "0.3.7"
lazy_static = "1.5.0"
shellexpand = "3.1"
image = "=0.25.4"
[[bin]]
name = "thoth"
path = "src/main.rs"
[dev-dependencies]
mockall = "0.11"