cosmic-comp/Cargo.toml

61 lines
1.5 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"
slog = "2.7"
slog-term = "2.8"
slog-async = "2.7"
slog-scope = "4.4"
slog-stdlog = "4.1"
2022-03-28 23:45:30 +02:00
serde = { version = "1", features = ["derive"] }
2022-02-05 00:40:17 +01:00
serde_json = { version = "1", optional = true }
2022-01-11 17:22:23 +01:00
egui = { version = "0.16", optional = true }
2022-01-20 19:51:46 +01:00
edid-rs = { version = "0.1" }
2022-02-01 13:59:39 +01:00
thiserror = "1.0.26"
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"
atomic_float = "0.1"
2022-04-27 20:08:05 +02:00
libsystemd = "0.5"
2021-12-15 17:25:15 +01:00
[dependencies.smithay]
version = "0.3"
git = "https://github.com/Smithay/smithay.git"
2022-03-24 20:32:31 +01:00
rev = "bff3f51c"
2021-12-15 17:25:15 +01:00
default-features = false
2022-03-16 20:05:24 +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_gl", "renderer_multi", "wayland_frontend", "slog-stdlog"]
2022-01-11 17:22:23 +01:00
[dependencies.smithay-egui]
git = "https://github.com/Smithay/smithay-egui.git"
2022-03-24 20:32:31 +01:00
rev = "f49044b3"
2022-01-11 17:22:23 +01:00
optional = true
2022-03-16 20:19:12 +01:00
[build-dependencies]
wayland-scanner = "0.29"
2022-01-11 17:22:23 +01:00
[features]
default = []
2022-03-28 23:45:30 +02:00
debug = ["egui", "smithay-egui", "serde_json"]
2022-03-22 12:31:19 +01:00
[profile.dev]
lto = "thin"
[profile.fastdebug]
inherits = "release"
debug = true
[profile.release]
lto = "fat"
2022-03-30 23:54:00 +02:00
[patch."https://github.com/Smithay/smithay.git"]
2022-04-27 20:08:05 +02:00
smithay = { git = "https://github.com/pop-os/smithay", branch = "main" }
#smithay = { path = "../smithay" }