forked from daa84/neovim-gtk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
74 lines (63 loc) · 1.6 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
63
64
65
66
67
68
69
70
71
72
73
[package]
name = "nvim-gtk"
version = "0.2.0"
authors = ["daa84 <[email protected]>"]
build = "build.rs"
[dependencies]
clap = "2.32"
cairo-rs = "0.5"
pango-sys = "0.7"
pangocairo = "0.6"
pangocairo-sys = "0.8"
glib = "0.6"
glib-sys = "0.7"
gdk = "0.9"
gdk-sys = "0.7"
gio = "0.5"
gobject-sys = "0.7"
#gdk = { git = 'https://github.com/gtk-rs/gdk' }
#gdk-sys = { git = 'https://github.com/gtk-rs/sys' }
#glib = { git = 'https://github.com/gtk-rs/glib' }
#glib-sys = { git = 'https://github.com/gtk-rs/sys' }
#cairo-rs = { git = 'https://github.com/gtk-rs/cairo' }
#cairo-sys-rs = { git = 'https://github.com/gtk-rs/cairo' }
#pango = { git = 'https://github.com/gtk-rs/pango' }
#pango-sys = { git = 'https://github.com/gtk-rs/sys' }
#gio = { git = 'https://github.com/gtk-rs/gio' }
#pangocairo = { git = 'https://github.com/RazrFalcon/pangocairo-rs' }
neovim-lib = "0.5"
phf = "0.7"
log = "0.4"
env_logger = "0.5"
htmlescape = "0.3"
rmpv = "0.4"
percent-encoding = "1.0"
regex = "1.0"
lazy_static = "1.1"
unicode-width = "0.1"
unicode-segmentation = "1.2"
serde = "1.0"
serde_derive = "1.0"
toml = "0.4"
serde_json = "1.0"
atty = "0.2"
dirs = "1.0"
[target.'cfg(unix)'.dependencies]
unix-daemonize = "0.1"
#[dependencies.neovim-lib]
#git = "https://github.com/daa84/neovim-lib"
[target.'cfg(windows)'.build-dependencies]
winres = "0.1"
[build-dependencies]
phf_codegen = "0.7"
[dependencies.pango]
features = ["v1_38"]
version = "0.5"
[dependencies.gtk]
version = "0.5"
features = ["v3_22"]
#git = "https://github.com/gtk-rs/gtk"
[dependencies.gtk-sys]
version = "0.7"
features = ["v3_22"]
#git = 'https://github.com/gtk-rs/sys'