-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
35 lines (31 loc) · 837 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
[package]
name = "illumination"
version = "0.1.0"
authors = ["Paul D <[email protected]>"]
edition = "2018"
license = "MIT"
repository = "https://github.com/oknozor/illumination"
description = """
A simple Neovim plugin to render buffers in a WebKit2Gtk window.
"""
[dependencies]
neovim-lib = "0.6"
horrorshow = "0.6.2"
webkit2gtk = "0.9"
pulldown-cmark = { version = "0.11.0", default-features = false, features = [
"simd",
"html",
] }
gtk = "^0"
glib = "^0"
gio = "^0"
config = "^0"
lazy_static = "1.4.0"
dirs = "2.0"
[dependencies.log]
version = "0.4"
features = ["max_level_debug", "release_max_level_warn"]
[features]
gtk_3_18 = ["gtk/v3_18", "gio/v2_46", "glib/v2_46"]
gtk_3_22_30 = ["gtk_3_18", "gtk/v3_22_30", "gio/v2_56", "glib/v2_56"]
gtk_3_24 = ["gtk_3_22_30", "gtk/v3_24", "gio/v2_58", "glib/v2_58"]