neovim-gtk/Cargo.toml

52 lines
1.2 KiB
TOML
Raw Normal View History

2016-03-16 14:39:53 +00:00
[package]
name = "nvim-gtk"
2017-05-13 14:31:19 +00:00
version = "0.1.2"
2016-03-16 14:39:53 +00:00
authors = ["daa84 <daa84@inbox.ru>"]
build = "build.rs"
[dependencies]
#cairo-rs = "0.1"
#pango = "0.1"
#pangocairo = "0.1"
#glib = "0.1"
#glib-sys = "0.3"
#gdk = "0.5"
#gdk-sys = "0.3"
#gio = "0.1"
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' }
2017-05-28 09:33:09 +00:00
neovim-lib = "0.4"
2016-04-02 20:00:18 +00:00
phf = "0.7"
2017-04-03 11:17:06 +00:00
log = "0.3"
env_logger = "0.4"
2017-05-13 14:31:19 +00:00
htmlescape = "0.3"
serde = "1.0"
serde_derive = "1.0"
toml = "0.4"
2016-04-02 20:00:18 +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
[dependencies.gtk]
version = "0.1"
2017-05-13 14:31:19 +00:00
features = ["v3_22"]
2017-06-03 11:41:11 +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]
version = "0.3"
2017-05-13 14:31:19 +00:00
features = ["v3_22"]
git = 'https://github.com/gtk-rs/sys'
2017-03-09 08:44:22 +00:00