-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (56 loc) · 1.88 KB
/
Copy pathCargo.toml
File metadata and controls
60 lines (56 loc) · 1.88 KB
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
[package]
name = "cosmic_tail"
version = "0.1.0"
edition = "2024"
license = "MIT"
description = "A TailScale GUI for COSMIC desktop"
repository = "https://github.com/frozenjava/CosmicTail"
[dependencies]
i18n-embed = { version = "0.16", features = [
"fluent-system",
"desktop-requester",
] }
i18n-embed-fl = "0.10"
open = "5.3.2"
rust-embed = "8.8.0"
tokio = { version = "1.48.0", features = ["full"] }
hyper = { version = "1.11", features = ["client", "http1"] }
hyper-util = { version = "0.1", features = ["tokio"] }
http-body-util = "0.1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
chrono = { version = "0.4", features = ["serde"] }
thiserror = "2"
# Matches the version libcosmic already pulls in for single-instance activation.
zbus = "5"
tracing = "0.1.44"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[build-dependencies]
xdgen = "0.1"
[dependencies.libcosmic]
git = "https://github.com/pop-os/libcosmic.git"
# See https://github.com/pop-os/libcosmic/blob/master/Cargo.toml for available features.
# Remove features if not needed.
features = [
# About widget for the app
"about",
# On app startup, focuses an existing instance if the app is already open
"single-instance",
# Markdown widget
"markdown",
# QR code widget
"qr_code",
# GPU-accelerated rendering
"wgpu",
# xdg portal dialogs on Linux
"xdg-portal",
# Panel applet support, for the `cosmic_tail_applet` binary. Purely
# additive: it turns on autosize, winit, wayland, tokio, cosmic-panel-config,
# ron and multi-window, none of which conflict with the features above.
"applet-token"
]
# 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" }