-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (30 loc) · 950 Bytes
/
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
[package]
name = "lorem"
description = "Lorem Ipsum generator"
version = "0.2.0"
authors = ["alt-art <[email protected]>"]
repository="https://github.com/alt-art/lorem"
license = "GPL-3.0-or-later"
readme = "README.md"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rand = "0.8.4"
glib = "0.14.2"
gtk = "0.14.0"
gdk = "0.14.0"
[package.metadata.deb]
maintainer = "Pedro Mendes <[email protected]>"
copyright = "2020, Pedro Mendes <[email protected]>"
license-file = ["LICENSE", "3"]
extended-description = "Lorem Ipsum generator for prototype desing"
section = "utility"
priority = "optional"
assets = [
# Binary
["target/release/lorem", "/usr/bin/", "111"],
# .Desktop
["resources/lorem.desktop", "/usr/share/applications/","644"],
# Icon
["resources/lorem.svg", "/usr/share/icons/hicolor/scalable/apps/","644"]
]