forked from beeender/glrnvim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (36 loc) · 1.09 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.3.1"
authors = ["beeender <chenmulong@gmail.com>"]
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]
regex = "1.5.4"
which = "4.2.2"
dirs = "4.0.0"
tempfile = "3.2.0"
# 1.0.98 doesn't compile under Mac
serde = { version = "1.0.132", features = ["derive"] }
serde_yaml = "0.8.23"
shellexpand = "2.1.0"
log = "0.4.14"
env_logger = "0.9.0"
sysinfo = "0.22.4"
[package.metadata.deb]
maintainer = "beeender <chenmulong@gmail.com>"
copyright = "2019, beeender <chemulong@gmail.com>"
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