-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
56 lines (49 loc) · 2.21 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
[package]
name = "cosmic-ext-applet-system-monitor"
version = "0.1.2"
edition = "2021"
authors = ["D-Brox <davidfbg00@gmail.com>"]
description = "System monitor applet for the COSMIC DE"
readme = "README.md"
license = "GPL-3.0"
homepage = "https://github.com/D-Brox/cosmic-ext-applet-system-monitor"
repository = "https://github.com/D-Brox/cosmic-ext-applet-system-monitor.git"
rust-version = "1.80"
[dependencies]
circular-queue = "0.2.6"
i18n-embed-fl = "0.9.1"
open = "5.1.3"
plotters = "0.3.6"
plotters-iced = { git = "https://github.com/D-Brox/plotters-cosmic-iced.git" }
rust-embed = "8.3.0"
serde = "1.0.209"
sysinfo = "0.33.1"
[dependencies.libcosmic]
git = "https://github.com/pop-os/libcosmic.git"
default-features = false
features = ["applet", "tokio", "wayland"]
[dependencies.i18n-embed]
version = "0.15"
features = ["fluent-system", "desktop-requester"]
[package.metadata.deb]
license-file = "LICENSE"
assets = [
["target/release/cosmic-ext-applet-system-monitor", "usr/bin/", "755"],
["res/dev.DBrox.CosmicSystemMonitor.desktop", "usr/share/applications/", "644"],
["res/dev.DBrox.CosmicSystemMonitor.metainfo.xml", "usr/share/metainfo/", "644"],
["res/icons/hicolor/scalable/apps/dev.DBrox.CosmicSystemMonitor.svg", "usr/share/icons/hicolor/scalable/apps/", "644"],
]
[package.metadata.generate-rpm]
assets = [
{ source = "target/release/cosmic-ext-applet-system-monitor", dest = "/usr/bin/", mode = "755" },
{ source = "LICENSE", dest = "/usr/share/doc/cosmic-ext-applet-system-monitor/LICENSE", doc = true, mode = "644" },
{ source = "res/*.desktop", dest = "/usr/share/applications/", mode = "644" },
{ source = "res/icons/hicolor/scalable/apps/*.svg", dest = "/usr/share/icons/scalable/apps/", mode = "644"},
]
[package.metadata.aur]
files = [
["res/dev.DBrox.CosmicSystemMonitor.desktop", "/usr/share/applications/dev.DBrox.CosmicSystemMonitor.desktop"],
["res/dev.DBrox.CosmicSystemMonitor.metainfo.xml", "/usr/share/metainfo/dev.DBrox.CosmicSystemMonitor.metainfo.xml"],
["LICENSE","/usr/share/doc/cosmic-ext-applet-system-monitor/LICENSE"],
["res/icons/hicolor/scalable/apps/dev.DBrox.CosmicSystemMonitor.svg", "/usr/share/icons/scalable/apps/dev.DBrox.CosmicSystemMonitor.svg"],
]