-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathCargo.toml
39 lines (36 loc) · 1.1 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
[package]
name = "glrnvim"
version = "1.4.0"
authors = ["beeender <[email protected]>"]
edition = "2018"
description = "glrnvim combines OpenGL (possibly), Rust and NeoVIM together, to make the fastest, simplest neovim GUI."
readme = "README.md"
license = "GPL-3.0"
[dependencies]
which = "4.2.*"
dirs = "4.0.*"
tempfile = "3.8.*"
# 1.0.98 doesn't compile under Mac
serde = { version = "1.0.*", features = ["derive"] }
serde_yaml = "0.9.34"
toml_edit = "0.21.*"
shellexpand = "2.1.*"
log = "0.4.*"
env_logger = "0.10.*"
sysinfo = "0.22.*"
[package.metadata.deb]
maintainer = "beeender <[email protected]>"
copyright = "2019, beeender <[email protected]>"
license-file = ["LICENSE", "9"]
depends = "$auto"
extended-description = "glrnvim wraps nvim with your favourite terminal into a standalone, non-fancy but daily-usable neovim GUI."
section = "editors"
priority = "optional"
assets = [
["target/release/glrnvim", "usr/bin/", "755"],
["glrnvim.desktop", "usr/share/applications/", "644"],
["glrnvim.svg", "usr/share/icons/hicolor/scalable/apps/", "644"]
]
[profile.dev]
opt-level = 0
debug = true