You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

70 lines
1.5 KiB

  1. [package]
  2. name = "nvim-gtk"
  3. version = "0.2.0"
  4. authors = ["daa84 <daa84@inbox.ru>"]
  5. build = "build.rs"
  6. [dependencies]
  7. cairo-rs = "0.4"
  8. pango-sys = "0.6"
  9. pangocairo = "0.5"
  10. pangocairo-sys = "0.7"
  11. glib = "0.5"
  12. glib-sys = "0.6"
  13. gdk = "0.8"
  14. gdk-sys = "0.6"
  15. gio = "0.4"
  16. gobject-sys = "0.6"
  17. #gdk = { git = 'https://github.com/gtk-rs/gdk' }
  18. #gdk-sys = { git = 'https://github.com/gtk-rs/sys' }
  19. #glib = { git = 'https://github.com/gtk-rs/glib' }
  20. #glib-sys = { git = 'https://github.com/gtk-rs/sys' }
  21. #cairo-rs = { git = 'https://github.com/gtk-rs/cairo' }
  22. #cairo-sys-rs = { git = 'https://github.com/gtk-rs/cairo' }
  23. #pango = { git = 'https://github.com/gtk-rs/pango' }
  24. #pango-sys = { git = 'https://github.com/gtk-rs/sys' }
  25. #gio = { git = 'https://github.com/gtk-rs/gio' }
  26. #pangocairo = { git = 'https://github.com/RazrFalcon/pangocairo-rs' }
  27. neovim-lib = "0.5"
  28. phf = "0.7"
  29. log = "0.4"
  30. env_logger = "0.5"
  31. htmlescape = "0.3"
  32. rmpv = "0.4"
  33. percent-encoding = "1.0"
  34. regex = "0.2"
  35. lazy_static = "1.0"
  36. unicode-width = "0.1.4"
  37. unicode-segmentation = "1.2.0"
  38. [target.'cfg(unix)'.dependencies]
  39. unix-daemonize = "0.1"
  40. serde = "1.0"
  41. serde_derive = "1.0"
  42. toml = "0.4"
  43. serde_json = "1.0"
  44. atty = "0.2"
  45. #[dependencies.neovim-lib]
  46. #git = "https://github.com/daa84/neovim-lib"
  47. [build-dependencies]
  48. phf_codegen = "0.7"
  49. [dependencies.pango]
  50. features = ["v1_38"]
  51. version = "0.4"
  52. [dependencies.gtk]
  53. version = "0.4"
  54. features = ["v3_22"]
  55. #git = "https://github.com/gtk-rs/gtk"
  56. [dependencies.gtk-sys]
  57. version = "0.6"
  58. features = ["v3_22"]
  59. #git = 'https://github.com/gtk-rs/sys'