-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
70 lines (59 loc) · 1.67 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
[package]
name = "rv"
version = "0.1.1-alpha"
edition = "2021"
rust-version = "1.56"
license = "MIT OR Apache-2.0"
repository = "https://github.com/songww/reovim"
description = "This is a graphical user interface for Neovim, powered by gtk4-rs and reml4."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = "0.4"
which = "4"
anyhow = "1"
fragile = "1"
futures = "0.3"
tracker = "0.1"
once_cell = "1"
derivative = "2"
derive-new = "0.5"
env_logger = "0.9"
rustc-hash = "1"
vector-map = "1"
async-trait = "0.1"
derive_more = "0.99"
pin-project = "1"
clap = { version = "3", features = [ "derive", "env" ] }
chan = { version = "0.5", package = "crossbeam-channel" }
nvim = { version = "0.4", package = "nvim-rs", features = [ "use_tokio" ] }
relm4 = { version = "0.4", features = [ "tokio-rt", "libadwaita" ] }
relm-macros = { version = "0.4", package = "relm4-macros" }
relm-components = { version = "0.4", package = "relm4-components" }
tokio = { version = "1", features = ["process", "io-util", "sync", "rt", "time", "signal", "rt-multi-thread"] }
tokio-util = { version = "0.7", features = ["compat"] }
parking_lot = "0.12"
[dependencies.adw]
package = "libadwaita"
version = "0.1"
[dependencies.cairo]
version = "0.15"
package = "cairo-rs"
features = [ "v1_16", "png" ]
[dependencies.pango]
version = "0.15"
package = "pango"
features = [ "v1_50" ]
[dependencies.pangocairo]
version = "0.15"
package = "pangocairo"
[dependencies.graphene]
version = "0.15"
package = "graphene-rs"
[dependencies.gtk]
version = "0.4"
package = "gtk4"
features = [ "v4_6" ]
[dependencies.glib]
version = "0.15"
package = "glib"
features = [ "v2_70" ]