cosmic-comp/Cargo.toml

126 lines
3.5 KiB
TOML
Raw Normal View History

2021-12-15 17:25:15 +01:00
[package]
2024-02-07 12:33:32 +01:00
authors = ["Victoria Brekenfeld"]
2021-12-15 17:25:15 +01:00
edition = "2021"
license = "GPL-3.0-only"
2024-02-07 12:33:32 +01:00
name = "cosmic-comp"
version = "0.1.0"
2021-12-15 17:25:15 +01:00
[workspace]
members = [
2024-02-07 12:33:32 +01:00
"cosmic-comp-config",
]
2021-12-15 17:25:15 +01:00
[dependencies]
2024-02-07 12:33:32 +01:00
anyhow = {version = "1.0.51", features = ["backtrace"]}
2023-09-29 21:33:16 +02:00
bitflags = "2.4"
2023-01-09 13:55:24 +01:00
bytemuck = "1.12"
calloop = {version = "0.14.1", features = ["executor"]}
2024-02-07 12:33:32 +01:00
cosmic-comp-config = {path = "cosmic-comp-config"}
cosmic-config = {git = "https://github.com/pop-os/libcosmic/", features = ["calloop", "macro"]}
2025-02-21 14:29:23 -08:00
cosmic-protocols = {git = "https://github.com/pop-os/cosmic-protocols", rev = "e706814", default-features = false, features = ["server"]}
2024-04-03 16:02:27 +02:00
cosmic-settings-config = { git = "https://github.com/pop-os/cosmic-settings-daemon" }
libdisplay-info = "0.2.0"
2025-01-14 14:33:23 -08:00
egui = {version = "0.30.0", optional = true}
egui_plot = {version = "0.30.0", optional = true}
2024-02-07 12:33:32 +01:00
i18n-embed = {version = "0.14", features = ["fluent-system", "desktop-requester"]}
i18n-embed-fl = "0.8"
2024-02-07 12:33:32 +01:00
iced_tiny_skia = {git = "https://github.com/pop-os/libcosmic/"}
indexmap = "2.0"
keyframe = "1.1.1"
2022-07-04 15:24:50 +02:00
lazy_static = "1.4.0"
2024-02-07 12:33:32 +01:00
libc = "0.2.149"
libcosmic = {git = "https://github.com/pop-os/libcosmic/", default-features = false}
libsystemd = {version = "0.7", optional = true}
log-panics = {version = "2", features = ["with-backtrace"]}
once_cell = "1.18.0"
ordered-float = "4.0"
png = "0.17.5"
regex = "1"
ron = "0.9.0-alpha.0"
2024-02-07 12:33:32 +01:00
rust-embed = {version = "8.0", features = ["debug-embed"]}
sanitize-filename = "0.5.0"
sendfd = "0.4.1"
serde = {version = "1", features = ["derive"]}
serde_json = "1"
thiserror = "1.0.26"
time = {version = "0.3.30", features = ["macros", "formatting", "local-offset"]}
2023-12-14 15:02:45 -08:00
tiny-skia = "0.11"
2024-04-03 16:02:27 +02:00
tracing = { version = "0.1.37", features = ["max_level_debug", "release_max_level_info"] }
tracing-journald = "0.3.0"
2024-02-07 12:33:32 +01:00
tracing-subscriber = {version = "0.3.16", features = ["env-filter", "tracing-log"]}
2024-05-30 15:46:25 -05:00
wayland-backend = "0.3.3"
wayland-scanner = "0.31.1"
2024-02-07 12:33:32 +01:00
xcursor = "0.3.3"
xdg = "^2.1"
2023-12-07 19:53:41 +00:00
xdg-user = "0.2.1"
xkbcommon = "0.8"
zbus = "4.4.0"
2023-10-07 19:15:44 -07:00
profiling = { version = "1.0" }
2024-04-03 18:08:43 +02:00
rustix = { version = "0.38.32", features = ["process"] }
smallvec = "1.13.2"
2024-09-19 18:11:54 +02:00
rand = "0.8.5"
reis = { version = "0.4", features = ["calloop"] }
2025-03-25 16:44:55 -04:00
# CLI arguments
clap_lex = "0.7"
2023-05-12 20:01:37 +02:00
[dependencies.id_tree]
branch = "feature/copy_clone"
2024-02-07 12:33:32 +01:00
git = "https://github.com/Drakulix/id-tree.git"
2021-12-15 17:25:15 +01:00
[dependencies.smithay]
2024-02-07 12:33:32 +01:00
default-features = false
features = [
"backend_drm",
"backend_gbm",
"backend_egl",
"backend_libinput",
"backend_session_libseat",
"backend_udev",
"backend_winit",
"backend_vulkan",
"backend_x11",
"desktop",
"renderer_glow",
"renderer_multi",
"renderer_pixman",
2024-02-07 12:33:32 +01:00
"wayland_frontend",
"xwayland",
]
2025-03-11 19:14:49 +01:00
git = "https://github.com/smithay/smithay"
rev = "a503d98"
2022-01-11 17:22:23 +01:00
[dependencies.smithay-egui]
features = ["svg"]
2024-02-07 12:33:32 +01:00
git = "https://github.com/Smithay/smithay-egui.git"
2022-01-11 17:22:23 +01:00
optional = true
2025-03-11 19:14:49 +01:00
rev = "e720136"
2022-01-11 17:22:23 +01:00
[features]
debug = ["egui", "egui_plot", "smithay-egui", "anyhow/backtrace"]
default = ["systemd"]
systemd = ["libsystemd"]
2023-10-07 19:15:44 -07:00
profile-with-tracy = ["profiling/profile-with-tracy"]
2022-03-22 12:31:19 +01:00
[profile.dev.package.tiny-skia]
opt-level = 2
[profile.dev.package.rustybuzz]
opt-level = 2
[profile.dev.package.ttf-parser]
opt-level = 2
2022-03-22 12:31:19 +01:00
[profile.fastdebug]
debug = true
2024-02-07 12:33:32 +01:00
inherits = "release"
2022-03-22 12:31:19 +01:00
[profile.release]
2022-08-11 17:13:56 +02:00
lto = "fat"
2025-02-17 20:30:26 +01:00
[patch."https://github.com/pop-os/cosmic-protocols"]
2025-03-21 20:17:51 +01:00
cosmic-protocols = { git = "https://github.com/pop-os//cosmic-protocols", rev = "ee0d46f" }
cosmic-client-toolkit = { git = "https://github.com/pop-os//cosmic-protocols", rev = "ee0d46f" }
2025-03-13 13:28:23 -07:00
[patch."https://github.com/smithay/smithay"]
2025-03-21 20:26:04 +01:00
smithay = { git = "https://github.com/smithay/smithay//", rev = "8886e3b" }