2016-03-16 14:39:53 +00:00
|
|
|
[package]
|
2017-03-29 15:29:19 +00:00
|
|
|
name = "nvim-gtk"
|
2017-09-13 09:39:02 +00:00
|
|
|
version = "0.2.0"
|
2016-03-16 14:39:53 +00:00
|
|
|
authors = ["daa84 <daa84@inbox.ru>"]
|
|
|
|
build = "build.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2018-03-18 21:15:58 +00:00
|
|
|
cairo-rs = "0.4"
|
|
|
|
pango = "0.4"
|
|
|
|
pango-sys = "0.6"
|
|
|
|
pangocairo = "0.5"
|
|
|
|
pangocairo-sys = "0.7"
|
|
|
|
glib = "0.5"
|
|
|
|
glib-sys = "0.6"
|
|
|
|
gdk = "0.8"
|
|
|
|
gdk-sys = "0.6"
|
|
|
|
gio = "0.4"
|
|
|
|
gobject-sys = "0.6"
|
2017-08-21 15:10:52 +00:00
|
|
|
#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' }
|
2017-08-21 15:14:13 +00:00
|
|
|
#pangocairo = { git = 'https://github.com/RazrFalcon/pangocairo-rs' }
|
2017-11-09 13:43:47 +00:00
|
|
|
neovim-lib = "0.5"
|
2016-04-02 20:00:18 +00:00
|
|
|
phf = "0.7"
|
2017-12-31 09:47:50 +00:00
|
|
|
log = "0.4"
|
2018-02-17 10:07:06 +00:00
|
|
|
env_logger = "0.5"
|
2017-05-13 14:31:19 +00:00
|
|
|
htmlescape = "0.3"
|
2017-11-17 15:40:09 +00:00
|
|
|
rmpv = "0.4"
|
2018-03-19 18:00:40 +00:00
|
|
|
percent-encoding = "1.0"
|
|
|
|
regex = "0.2"
|
|
|
|
lazy_static = "1.0"
|
2018-03-25 13:29:59 +00:00
|
|
|
unicode-width = "0.1.4"
|
2018-04-07 21:04:31 +00:00
|
|
|
unicode-segmentation = "1.2.0"
|
2017-05-13 14:31:19 +00:00
|
|
|
|
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
|
|
|
toml = "0.4"
|
2017-10-30 15:25:23 +00:00
|
|
|
serde_json = "1.0"
|
|
|
|
|
2018-04-10 18:34:13 +00:00
|
|
|
atty = "0.2"
|
2018-04-09 20:11:15 +00:00
|
|
|
|
2017-05-28 09:33:09 +00:00
|
|
|
#[dependencies.neovim-lib]
|
|
|
|
#git = "https://github.com/daa84/neovim-lib"
|
2017-02-26 19:31:13 +00:00
|
|
|
|
2016-04-02 20:00:18 +00:00
|
|
|
[build-dependencies]
|
|
|
|
phf_codegen = "0.7"
|
2016-03-16 14:39:53 +00:00
|
|
|
|
|
|
|
[dependencies.gtk]
|
2018-03-18 21:15:58 +00:00
|
|
|
version = "0.4"
|
2017-05-13 14:31:19 +00:00
|
|
|
features = ["v3_22"]
|
2017-08-21 15:10:52 +00:00
|
|
|
#git = "https://github.com/gtk-rs/gtk"
|
2016-03-16 14:39:53 +00:00
|
|
|
|
2017-03-09 08:44:22 +00:00
|
|
|
[dependencies.gtk-sys]
|
2018-03-18 21:15:58 +00:00
|
|
|
version = "0.6"
|
2017-05-13 14:31:19 +00:00
|
|
|
features = ["v3_22"]
|
2017-08-21 15:10:52 +00:00
|
|
|
#git = 'https://github.com/gtk-rs/sys'
|
2017-03-09 08:44:22 +00:00
|
|
|
|