forked from daa84/neovim-gtk
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
73 lines (61 loc) · 1.56 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
71
72
73
[package]
name = "nvim-gtk"
version = "1.1.0-devel"
authors = [
"daa84 <[email protected]>",
"Lyude Paul <[email protected]>",
]
build = "build.rs"
edition = "2018"
license = "GPLv3"
[features]
default = []
flatpak = []
[dependencies]
clap = { version = "4.0", features = ["color", "help", "std", "usage", "error-context", "suggestions", "wrap_help", "derive"] }
glib = "0.20.0"
gio = "0.20.0"
async-trait = "0.1.0"
futures = { version = "0.3.0", features = ["io-compat", "thread-pool"] }
tokio = { version = "1.0", features = ["full"] }
tokio-util = { version = "0.7.0", features = ["full"] }
nvim-rs = { version = "0.8.0-pre", features = ["use_tokio"], git = "https://github.com/Lyude/nvim-rs.git", branch = "nvim-gtk-fork" }
phf = "0.11.0"
log = "0.4.0"
env_logger = "0.11.0"
html-escape = "0.2.0"
rmpv = { version = "1.0", features = ["with-serde"] }
percent-encoding = "2.0"
regex = "1.0"
unicode-width = "0.1.0"
unicode-segmentation = "1.0"
fnv = "1.0"
once_cell = "1.0"
serde = { version = "1.0", features = ["derive"] }
toml = "0.8.0"
serde_json = "1.0"
is-terminal = "0.4.0"
[target.'cfg(unix)'.dependencies]
fork = "0.2.0"
[target.'cfg(windows)'.build-dependencies]
winres = "0.1.0"
[build-dependencies]
phf_codegen = "0.11.0"
build-version = "0.1.0"
[dev-dependencies]
trycmd = "0.15.0"
[dependencies.pango]
features = ["v1_46"]
version = "0.20.0"
[dependencies.gtk]
package = "gtk4"
version = "0.9.0"
features = ["v4_4"]
[dependencies.gdk]
package = "gdk4"
version = "0.9.0"
features = ["v4_4"]
[dependencies.gsk]
package = "gsk4"
version = "0.9.0"
features = ["v4_4"]