generated from cosmic-utils/cosmic-app-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
65 lines (59 loc) · 1.62 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
[package]
name = "linutil_space"
version = "0.1.0"
edition = "2021"
license = "GPL-3.0"
[dependencies]
i18n-embed-fl = "0.8"
iced_term = "0.4.0"
include_dir = "0.7.4"
once_cell = "1.19.0"
open = "5.1.3"
rust-embed = "8.3.0"
serde = "1.0.208"
tokio = { version = "1.37.0", features = ["full"] }
toml = "0.8.19"
which = "6.0.3"
[dependencies.libcosmic]
git = "https://github.com/pop-os/libcosmic.git"
default-features = false
features = ["dbus-config", "tokio", "winit", "wgpu"]
[dependencies.i18n-embed]
version = "0.14"
features = ["fluent-system", "desktop-requester"]
# Uncomment to test a locally-cloned libcosmic
# [patch.'https://github.com/pop-os/libcosmic']
# libcosmic = { path = "../libcosmic" }
# cosmic-config = { path = "../libcosmic/cosmic-config" }
# cosmic-theme = { path = "../libcosmic/cosmic-theme" }
# Cargo deb
# Edit here to customize the package metadata
# Especially the Assets section
[package.metadata.deb]
maintainer = "Your Name, <[email protected]>"
copyright = "2024 Your Name"
# license-file = "LICENSE"
extended-description = """\
Describe your app here. \
"""
depends = "$auto"
section = "utility"
priority = "optional"
assets = [
[
"target/release/cosmic-app-template",
"usr/bin/cosmic-app-template",
"755",
],
[
"res/com.example.CosmicAppTemplate.metainfo.xml",
"usr/share/metainfo/com.example.CosmicAppTemplate.metainfo.xml",
"644",
],
[
"res/com.example.CosmicAppTemplate.desktop",
"usr/share/applications/com.example.CosmicAppTemplate.desktop",
"644",
],
# ["res/icons/hicolor/", "usr/share/icons/hicolor/", "644"]
]