32 lines
No EOL
789 B
TOML
32 lines
No EOL
789 B
TOML
[package]
|
|
name = "cosmic-comp"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "GPL-3.0-only"
|
|
authors = ["Victoria Brekenfeld"]
|
|
|
|
[dependencies]
|
|
anyhow = { version = "1.0.51", features = ["backtrace"] }
|
|
bitflags = "1.3.2"
|
|
slog = "2.7"
|
|
slog-term = "2.8"
|
|
slog-async = "2.7"
|
|
slog-scope = "4.4"
|
|
slog-stdlog = "4.1"
|
|
egui = { version = "0.16", optional = true }
|
|
|
|
[dependencies.smithay]
|
|
version = "0.3"
|
|
git = "https://github.com/Smithay/smithay.git"
|
|
rev = "92d04ba8"
|
|
default-features = false
|
|
features = ["backend_x11", "backend_egl", "backend_winit", "desktop", "use_system_lib", "renderer_gl", "wayland_frontend", "slog-stdlog"]
|
|
|
|
[dependencies.smithay-egui]
|
|
git = "https://github.com/Smithay/smithay-egui.git"
|
|
rev = "e6c41f6"
|
|
optional = true
|
|
|
|
[features]
|
|
default = []
|
|
debug = ["egui", "smithay-egui"] |