neovim-gtk/Cargo.toml

70 lines
1.5 KiB
TOML
Raw Permalink Normal View History

2016-03-16 14:39:53 +00:00
[package]
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-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"
env_logger = "0.5"
2017-05-13 14:31:19 +00:00
htmlescape = "0.3"
rmpv = "0.4"
percent-encoding = "1.0"
regex = "0.2"
lazy_static = "1.0"
2018-03-25 13:29:59 +00:00
unicode-width = "0.1.4"
unicode-segmentation = "1.2.0"
[target.'cfg(unix)'.dependencies]
unix-daemonize = "0.1"
2017-05-13 14:31:19 +00:00
serde = "1.0"
serde_derive = "1.0"
toml = "0.4"
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"
2016-04-02 20:00:18 +00:00
[build-dependencies]
phf_codegen = "0.7"
2016-03-16 14:39:53 +00:00
2018-05-06 12:22:38 +00:00
[dependencies.pango]
features = ["v1_38"]
version = "0.4"
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