2021-12-15 17:25:15 +01:00
|
|
|
[package]
|
|
|
|
|
name = "cosmic-comp"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
license = "GPL-3.0-only"
|
|
|
|
|
authors = ["Victoria Brekenfeld"]
|
|
|
|
|
|
2023-08-29 13:49:41 -07:00
|
|
|
[workspace]
|
|
|
|
|
members = [
|
|
|
|
|
"cosmic-comp-config"
|
|
|
|
|
]
|
|
|
|
|
|
2021-12-15 17:25:15 +01:00
|
|
|
[dependencies]
|
2021-12-22 21:27:56 +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"
|
2023-09-29 21:33:16 +02:00
|
|
|
calloop = { version = "0.12.2", features = ["executor"] }
|
2022-03-28 23:45:30 +02:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
2022-07-06 23:30:50 +02:00
|
|
|
serde_json = "1"
|
|
|
|
|
sendfd = "0.4.1"
|
2023-10-03 18:48:31 -07:00
|
|
|
egui = { version = "0.23.0", optional = true }
|
|
|
|
|
egui_plot = { version = "0.23.0", optional = true }
|
2023-10-03 13:28:32 -07:00
|
|
|
renderdoc = { version = "0.11.0", optional = true }
|
2022-01-20 19:51:46 +01:00
|
|
|
edid-rs = { version = "0.1" }
|
2022-08-15 20:23:27 +02:00
|
|
|
png = "0.17.5"
|
2022-07-04 15:24:50 +02:00
|
|
|
lazy_static = "1.4.0"
|
2023-01-13 11:50:48 -08:00
|
|
|
log-panics = { version = "2", features = ["with-backtrace"] }
|
2022-02-01 13:59:39 +01:00
|
|
|
thiserror = "1.0.26"
|
2022-07-06 23:36:25 +02:00
|
|
|
regex = "1"
|
2022-02-01 13:59:39 +01:00
|
|
|
xcursor = "0.3.3"
|
2023-10-03 13:28:32 -07:00
|
|
|
xkbcommon = "0.7"
|
2023-09-29 21:33:16 +02:00
|
|
|
indexmap = "2.0"
|
2022-03-28 23:45:30 +02:00
|
|
|
xdg = "^2.1"
|
2023-10-03 13:28:32 -07:00
|
|
|
ron = "0.8"
|
2023-11-22 13:27:12 -08:00
|
|
|
libsystemd = { version = "0.7", optional = true }
|
2023-10-04 18:26:47 +02:00
|
|
|
wayland-backend = "0.3.2"
|
2023-09-29 21:33:16 +02:00
|
|
|
wayland-scanner = "0.31.0"
|
2023-08-29 13:49:41 -07:00
|
|
|
cosmic-comp-config = { path = "cosmic-comp-config" }
|
2023-10-17 17:08:32 -04:00
|
|
|
cosmic-config = { git = "https://github.com/pop-os/libcosmic/", features = ["calloop", "macro"] }
|
2022-11-04 14:14:35 +01:00
|
|
|
cosmic-protocols = { git = "https://github.com/pop-os/cosmic-protocols", branch = "main", default-features = false, features = ["server"] }
|
2023-10-17 17:08:32 -04:00
|
|
|
libcosmic = { git = "https://github.com/pop-os/libcosmic/", default-features = false }
|
|
|
|
|
iced_tiny_skia = { git = "https://github.com/pop-os/libcosmic/" }
|
2023-12-14 15:02:45 -08:00
|
|
|
tiny-skia = "0.11"
|
2023-10-03 13:28:32 -07:00
|
|
|
ordered-float = "4.0"
|
|
|
|
|
glow = "0.12.0"
|
2023-02-24 17:41:52 +01:00
|
|
|
tracing-subscriber = { version = "0.3.16", features = ["env-filter", "tracing-log"] }
|
|
|
|
|
tracing-journald = "0.3.0"
|
2023-03-03 19:34:41 +01:00
|
|
|
tracing = { version = "0.1.37", features = ["max_level_debug", "release_max_level_info"] }
|
2023-10-03 18:48:31 -07:00
|
|
|
puffin = { version = "0.17.0", optional = true }
|
|
|
|
|
puffin_egui = { version = "0.23.0", optional = true }
|
2023-07-11 17:12:56 +02:00
|
|
|
keyframe = "1.1.1"
|
2023-06-13 18:43:29 +02:00
|
|
|
once_cell = "1.18.0"
|
2023-10-03 13:28:32 -07:00
|
|
|
i18n-embed = { version = "0.14", features = ["fluent-system", "desktop-requester"] }
|
|
|
|
|
i18n-embed-fl = "0.7"
|
2023-12-07 19:53:41 +00:00
|
|
|
rust-embed = { version = "8.0", features = ["debug-embed"] }
|
2023-10-19 12:03:45 -07:00
|
|
|
libc = "0.2.149"
|
2023-12-07 19:53:41 +00:00
|
|
|
xdg-user = "0.2.1"
|
|
|
|
|
time = { version = "0.3.30", features = ["macros", "formatting", "local-offset"] }
|
|
|
|
|
sanitize-filename = "0.5.0"
|
2023-05-12 20:01:37 +02:00
|
|
|
|
|
|
|
|
[dependencies.id_tree]
|
|
|
|
|
git = "https://github.com/Drakulix/id-tree.git"
|
|
|
|
|
branch = "feature/copy_clone"
|
2021-12-15 17:25:15 +01:00
|
|
|
|
|
|
|
|
[dependencies.smithay]
|
|
|
|
|
version = "0.3"
|
2023-02-24 17:41:52 +01:00
|
|
|
git = "https://github.com/smithay/smithay.git"
|
2023-09-29 21:33:16 +02:00
|
|
|
rev = "74ef59a3f"
|
2021-12-15 17:25:15 +01:00
|
|
|
default-features = false
|
2023-02-24 17:41:52 +01:00
|
|
|
features = ["backend_drm", "backend_gbm", "backend_egl", "backend_libinput", "backend_session_libseat", "backend_udev", "backend_winit", "backend_vulkan", "backend_x11", "desktop", "use_system_lib", "renderer_glow", "renderer_multi", "wayland_frontend", "xwayland"]
|
2022-01-11 17:22:23 +01:00
|
|
|
|
|
|
|
|
[dependencies.smithay-egui]
|
|
|
|
|
git = "https://github.com/Smithay/smithay-egui.git"
|
2023-10-03 18:48:31 -07:00
|
|
|
rev = "cdc652e0"
|
2022-11-21 10:10:50 +01:00
|
|
|
features = ["svg"]
|
2022-01-11 17:22:23 +01:00
|
|
|
optional = true
|
|
|
|
|
|
|
|
|
|
[features]
|
2023-02-27 16:24:01 -08:00
|
|
|
default = ["systemd"]
|
|
|
|
|
systemd = ["libsystemd"]
|
2023-10-03 18:48:31 -07:00
|
|
|
debug = ["egui", "egui_plot", "smithay-egui", "renderdoc", "puffin", "puffin_egui", "anyhow/backtrace"]
|
2022-03-22 12:31:19 +01:00
|
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
|
lto = "thin"
|
|
|
|
|
|
|
|
|
|
[profile.fastdebug]
|
|
|
|
|
inherits = "release"
|
|
|
|
|
debug = true
|
|
|
|
|
|
|
|
|
|
[profile.release]
|
2022-08-11 17:13:56 +02:00
|
|
|
lto = "fat"
|
|
|
|
|
|
|
|
|
|
[patch."https://github.com/Smithay/smithay.git"]
|
2024-01-16 17:30:46 +00:00
|
|
|
smithay = { git = "https://github.com/smithay//smithay", rev = "f1e7fc18a" }
|