forked from cosmic-utils/cosmic-ext-applet-sysinfo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (23 loc) · 738 Bytes
/
Copy pathCargo.toml
File metadata and controls
25 lines (23 loc) · 738 Bytes
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
[package]
name = "cosmic-ext-applet-sysinfo"
version = "0.1.0"
edition = "2024"
license = "GPL-3.0"
authors = ["rwxroot <rwxroot@proton.me>"]
homepage = "https://github.com/cosmic-utils/cosmic-ext-applet-sysinfo/"
repository = "https://github.com/cosmic-utils/cosmic-ext-applet-sysinfo.git"
[profile.release]
lto = "fat"
[dependencies]
libcosmic = { git = "https://github.com/pop-os/libcosmic", default-features = false, features = [
"applet",
] }
sysinfo = { version = "0.35.0", default-features = false, features = [
"system",
"network",
] }
tracing = { version = "0.1.41", default-features = false, features = ["log"] }
tracing-subscriber = { version = "0.3.19", default-features = false, features = [
"ansi",
"env-filter",
] }