This repository has been archived by the owner on Mar 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
48 lines (43 loc) · 1.46 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
[package]
name = "eddit"
version = "0.1.7"
authors = ["maze-n <mmaz999@outlook.com>"]
description = "A simple and basic text editor with GTK"
license-file = "COPYING"
license = "GPL-3.0"
readme = "README.MD"
edition = "2018"
[dependencies]
gdk = "0.12.1"
tiny-keccak = "1.4.0"
pango = "0.8.0"
glib = "0.9.3"
faccess = "0.2.3"
[dependencies.sourceview]
features = ["v3_18"]
version = "0.8.0"
[dependencies.gtk]
features = ["v3_22"]
version = "0.8.1"
[dependencies.gio]
version = "0.8.1"
features = ["v2_44"]
[package.metadata.deb]
name = "com.github.maze-n.eddit"
maintainer = "Mazen Maliyakkal <mmaz999@outlook.com>"
copyright = "2020, Mazen Maliyakkal <mmaz999@outlook.com>"
license-file = ["COPYING"]
depends = "$auto"
section = "utility"
priority = "optional"
maintainer-scripts = "make/pre_install.py make/post_install.py"
assets = [
["target/release/eddit", "/usr/bin/com.github.maze-n.eddit", "755"],
["data/com.github.maze-n.eddit.desktop", "/usr/share/applications/", "644"],
["data/com.github.maze-n.eddit.gschema.xml", "/usr/share/glib-2.0/schemas/", "644"],
["res/com.github.maze-n.eddit.svg", "/usr/share/icons/hicolor/scalable/apps/", "644"],
["res/icons/day.svg", "/opt/com.github.maze-n.eddit/icons/", "644"],
["res/icons/night.svg", "/opt/com.github.maze-n.eddit/icons/", "644"],
["data/styles/eddit-light.xml", "/usr/share/gtksourceview-3.0/styles/", "644"],
["data/styles/eddit-dark.xml", "/usr/share/gtksourceview-3.0/styles/", "644"],
]