summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 178e4f65aa1a21c6d19ee14bafd3aeec6fae266f (plain)
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
[package]
name = "gnvim"
version = "0.1.0"
authors = ["Ville Hakulinen <ville.hakulinen@gmail.com>"]
edition = "2018"

[profile.dev]
debug = true

[features]
default = ["libwebkit2gtk"]

unstable = []
libwebkit2gtk = [
    "webkit2gtk",
    "pulldown-cmark",
    "ammonia",
    "syntect",
    "lazy_static",
]

[dependencies]
log = "0.4.8"
env_logger = "0.7.1"

structopt = "0.3"

gio = "0.9"
pango = "0.9"
pangocairo = "0.10"
cairo-rs = "0.9"
glib = "0.10"
gdk = "0.13"
gdk-pixbuf = "0.9"

pulldown-cmark = { version = "0.2", default-features = false, optional = true }
ammonia = { version = "2", optional = true }
syntect = { version = "4", optional = true }
lazy_static = {version = "1.4", optional = true }

pin-project = "0.4"
futures = "0.3"
async-trait = "0.1"
rmpv = "0.4"

[dependencies.gtk]
version = "0.9"
features = ["v3_18"]

[dependencies.webkit2gtk]
version = "0.10"
features = ["v2_14"]
optional = true

[dependencies.nvim-rs]
git = "https://github.com/KillTheMule/nvim-rs"