forked from pop-os/xdg-desktop-portal-cosmic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
85 lines (77 loc) · 2.54 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[package]
name = "xdg-desktop-portal-cosmic"
version = "0.1.0"
edition = "2021"
license = "GPL-3.0-or-later"
[features]
default = []
wgpu = ["libcosmic/wgpu"]
[workspace]
members = ["cosmic-portal-config"]
[dependencies]
anyhow = "1.0.60"
ashpd = "0.8.1"
cosmic-files = { git = "https://github.com/pop-os/cosmic-files", default-features = false, features = ["gvfs", "wayland"] }
cosmic-protocols = { git = "https://github.com/pop-os/cosmic-protocols", rev = "c8d3a1c" }
cosmic-client-toolkit = { git = "https://github.com/pop-os/cosmic-protocols", rev = "c8d3a1c" }
futures = "0.3"
image = "0.25"
libcosmic = { git = "https://github.com/pop-os/libcosmic", features = [
"desktop",
"wayland",
"tokio",
"dbus-config",
] }
cosmic-bg-config = { git = "https://github.com/pop-os/cosmic-bg" }
cosmic-portal-config = { path = "./cosmic-portal-config" }
memmap2 = "0.9.0"
# pipewire = { git = "https://github.com/pop-os/pipewire-rs" }
once_cell = "1.19.0"
pipewire = { git = "https://gitlab.freedesktop.org/pipewire/pipewire-rs", features = [
"v0_3_33",
] }
png = "0.17.5"
rustix = { version = "0.38.0", features = ["fs"] }
# spa_sys = { package = "libspa-sys", git = "https://github.com/pop-os/pipewire-rs" }
spa_sys = { package = "libspa-sys", git = "https://gitlab.freedesktop.org/pipewire/pipewire-rs" }
tempfile = "3.5.0"
tokio = { version = "1.19.2", features = ["macros", "net", "rt", "sync"] }
wayland-client = { version = "0.31.1" }
zbus = { version = "4.2.2", default-features = false, features = ["tokio"] }
gbm = "0.15.0"
wayland-protocols = "0.32.1"
env_logger = "0.11.3"
dirs = "5.0.1"
time = { version = "0.3.31", features = [
"local-offset",
"formatting",
"macros",
] }
url = "2.5"
# i18n
i18n-embed = { version = "0.14.1", features = [
"fluent-system",
"desktop-requester",
] }
i18n-embed-fl = "0.8.0"
rust-embed = "8.2.0"
# Workspace
cosmic-config.workspace = true
log.workspace = true
serde.workspace = true
freedesktop-desktop-entry = "=0.7.0"
[workspace.dependencies]
cosmic-config = { git = "https://github.com/pop-os/libcosmic" }
log = "0.4.20"
serde = "1.0.143"
[dev-dependencies]
gst = { package = "gstreamer", version = "0.23.0" }
clap = { version = "4.5.9", features = ["derive"] }
# [patch."https://github.com/pop-os/libcosmic"]
# libcosmic = { path = "../libcosmic" }
# cosmic-config = { path = "../libcosmic/cosmic-config" }
#
# [patch."https://github.com/smithay/client-toolkit"]
# sctk = { package = "smithay-client-toolkit", git = "https://github.com/smithay/client-toolkit//", rev = "3bed072" }
[profile.release]
debug = true