-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (35 loc) · 916 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
[package]
name = "meilizet"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "mz"
path = "src/main.rs"
[dependencies]
ansi-to-tui = "0.4.1"
chrono = "0.4"
clap = "2.33.3"
color-eyre = "0.5.11"
eyre = "0.6.5"
frontmatter = "0.4.0"
glob = "0.3.0"
markdown-fm-doc = { git = "https://github.com/ssosik/markdown-fm-doc" }
openssl = { version = "0.10", features = ["vendored"] }
pest = "2.1.3"
pest_derive = "2.1.0"
reqwest = { version = "0.11.4", features = ["blocking", "json"] }
serde = { version = "1.0.115", features = ["derive"] }
serde_json = "1.0.57"
serde_yaml = "0.8.21"
shellexpand = "1.0.0"
structopt = "0.3"
syntect = "4.6.0"
tempfile = "3.2.0"
termion = "1.5.6"
tui = "0.16.0"
unicode-width = "0.1.9"
url = "2.2"
uuid = { version = "0.8", features = ["v4", "serde"] }
uuid-b64 = "0.1.1"
yaml-rust = "0.4.5"