cosmic-comp/Cargo.toml

74 lines
2.2 KiB
TOML
Raw Normal View History

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"]
[dependencies]
2021-12-22 21:27:56 +01:00
anyhow = { version = "1.0.51", features = ["backtrace"] }
2021-12-28 16:22:27 +01:00
bitflags = "1.3.2"
2023-01-09 13:55:24 +01:00
bytemuck = "1.12"
calloop = { version = "0.10.1", features = ["executor"] }
slog = { version = "2.7", features = [ "max_level_debug" ] } # "release_max_level_debug", "max_level_trace"] }
slog-term = "2.8"
slog-async = "2.7"
slog-journald = "2.2.0"
slog-scope = "4.4"
slog-stdlog = "4.1"
2023-01-09 13:53:00 +01:00
log = "0.4"
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"
2022-11-17 20:32:54 +01:00
egui = { version = "0.19.0", optional = true }
renderdoc = { version = "0.10.1", optional = true }
2022-01-20 19:51:46 +01:00
edid-rs = { version = "0.1" }
png = "0.17.5"
2022-07-04 15:24:50 +02:00
lazy_static = "1.4.0"
log-panics = { version = "2", features = ["with-backtrace"] }
2022-02-01 13:59:39 +01:00
thiserror = "1.0.26"
regex = "1"
2022-02-01 13:59:39 +01:00
xcursor = "0.3.3"
2022-03-24 20:32:31 +01:00
id_tree = "1.8.0"
2022-03-28 23:45:30 +02:00
xkbcommon = "0.4"
2022-03-24 20:32:31 +01:00
indexmap = "1.8.0"
2022-03-28 23:45:30 +02:00
xdg = "^2.1"
ron = "0.7"
2022-04-27 20:08:05 +02:00
libsystemd = "0.5"
2023-01-03 19:17:51 +01:00
wayland-backend = "0.1.0"
wayland-scanner = "0.30.0"
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"] }
libcosmic = { git = "https://github.com/pop-os/libcosmic", branch = "ci_add_without_shell", default-features = false, features = ["softbuffer"] }
iced_softbuffer = { git = "https://github.com/pop-os/libcosmic", branch = "ci_add_without_shell" }
ordered-float = "3.0"
2021-12-15 17:25:15 +01:00
[dependencies.smithay]
version = "0.3"
git = "https://github.com/Smithay/smithay.git"
rev = "2de946cf9e"
2021-12-15 17:25:15 +01:00
default-features = false
2023-01-03 19:17:51 +01:00
features = ["backend_drm", "backend_gbm", "backend_egl", "backend_libinput", "backend_session_libseat", "backend_udev", "backend_winit", "backend_x11", "desktop", "use_system_lib", "renderer_glow", "renderer_multi", "wayland_frontend", "slog-stdlog", "xwayland"]
2022-01-11 17:22:23 +01:00
[dependencies.smithay-egui]
git = "https://github.com/Smithay/smithay-egui.git"
2022-12-27 18:27:29 +01:00
rev = "b2be360015"
features = ["svg"]
2022-01-11 17:22:23 +01:00
optional = true
[features]
default = []
debug = ["egui", "smithay-egui", "renderdoc"]
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"]
2023-01-03 19:17:51 +01:00
smithay = { git = "https://github.com/pop-os/smithay", rev = "2a05d8cd64" }