-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
62 lines (50 loc) · 1.27 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[package]
name = "mds"
version = "0.19.2"
author = ["dj8yf0μl"]
description = "A skim-based `*.md` explore and surf note-taking tool"
repository = "https://github.com/dj8yfo/meudeus"
homepage = "https://youtu.be/z4DFN72QVSw"
keywords = ["note-taking", "PKM", "cli", "skim", "markdown"]
readme = "README.md"
exclude = ["tutorial.gif"]
edition = "2021"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.68"
clap = {version = "4.1.1", features=["cargo"]}
colored = "2.0.0"
chrono = "0.4.19"
sql-builder = "3"
sqlx = { version = "0.6", features = [
"runtime-tokio-rustls",
"chrono",
"sqlite",
] }
skim = "0.10.4"
async-trait = "0.1.58"
log = "0.4.17"
tokio = { version = "1", features = ["full"] }
rand = "0.8.5"
async-std = "1.12.0"
comfy-table = "6.1.4"
regex = "1.7.1"
duct = "0.13"
xdg = "2.4.1"
kdl = "4.6.0"
inquire = "0.5.3"
comrak = "0.18.0"
syntect = "5.0.0"
bidir_termtree = "0.1.1"
async-recursion = "1.0.2"
futures = "0.3.28"
env_logger = "0.10.0"
serde_json = "1.0.96"
rgb = { version = "0.8", features = ["serde"] }
env-substitute = "0.1.0"
opener = "0.6.1"
lazy_static = "1.4.0"
tuikit = "0.5.0"
miette = { version = "5.9.0", features = ["fancy"] }
thiserror = "1.0.40"