-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
37 lines (34 loc) · 1.13 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
[package]
name = "quickmd"
version = "0.6.0"
authors = ["Andrew Radev <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Quickly preview a markdown file"
readme = "README.md"
keywords = ["markdown", "gtk"]
exclude = ["tests/**", "_project.vim"]
repository = "https://github.com/AndrewRadev/quickmd"
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
anyhow = "1.0.52"
directories = "4.0.1"
env_logger = { version = "0.9.0", default-features = false }
gdk = "0.14.3"
gdk-pixbuf = "0.14.0"
gio = "0.14.8"
glib = "0.10.3"
gtk = { version = "0.14.3", features = ["v3_20"] }
log = "0.4"
notify = "4.0.17"
pathbuftools = "0.1.2"
pulldown-cmark = { version = "0.9.0", default-features = false, features = ["simd"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.74"
serde_yaml = "0.8.23"
structopt = { version = "0.3.25", default-features = false }
tempfile = "3.2.0"
webkit2gtk = "0.16.0"
[dev-dependencies]
claim = "0.4.0"