cosmic-comp/Cargo.toml

37 lines
1 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-02-05 00:40:17 +01:00
serde = { version = "1", optional = true }
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"
2021-12-15 17:25:15 +01:00
[dependencies.smithay]
version = "0.3"
git = "https://github.com/Smithay/smithay.git"
2022-02-04 20:53:18 +01:00
rev = "5da3a629"
2021-12-15 17:25:15 +01:00
default-features = false
2022-01-20 19:51:46 +01:00
features = ["backend_drm", "backend_gbm", "backend_egl", "backend_libinput", "backend_session_logind", "backend_udev", "backend_winit", "backend_x11", "desktop", "use_system_lib", "renderer_gl", "wayland_frontend", "slog-stdlog"]
2022-01-11 17:22:23 +01:00
[dependencies.smithay-egui]
git = "https://github.com/Smithay/smithay-egui.git"
2022-02-04 20:53:18 +01:00
rev = "cdca17da"
2022-01-11 17:22:23 +01:00
optional = true
[features]
default = []
2022-02-05 00:40:17 +01:00
debug = ["egui", "smithay-egui", "serde", "serde_json"]