chore: update smithay + switch to tracing
This commit is contained in:
parent
844ed552b9
commit
35de500c00
35 changed files with 622 additions and 754 deletions
23
Cargo.toml
23
Cargo.toml
|
|
@ -10,13 +10,6 @@ anyhow = { version = "1.0.51", features = ["backtrace"] }
|
|||
bitflags = "1.3.2"
|
||||
bytemuck = "1.12"
|
||||
calloop = { version = "0.10.1", features = ["executor"] }
|
||||
slog = { version = "2.7", features = ["release_max_level_info", "max_level_debug"] }#, features = [ "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"
|
||||
log = "0.4"
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
sendfd = "0.4.1"
|
||||
|
|
@ -41,23 +34,27 @@ cosmic-protocols = { git = "https://github.com/pop-os/cosmic-protocols", branch
|
|||
libcosmic = { git = "https://github.com/pop-os/libcosmic", rev = "abf8fc96c", default-features = false, features = ["softbuffer"] }
|
||||
iced_softbuffer = { git = "https://github.com/pop-os/libcosmic", rev = "abf8fc96c" }
|
||||
ordered-float = "3.0"
|
||||
glow = "0.11.2"
|
||||
tracing-subscriber = { version = "0.3.16", features = ["env-filter", "tracing-log"] }
|
||||
tracing-journald = "0.3.0"
|
||||
tracing = "0.1.37"
|
||||
|
||||
[dependencies.smithay]
|
||||
version = "0.3"
|
||||
git = "https://github.com/Smithay/smithay.git"
|
||||
rev = "2de946cf9e"
|
||||
git = "https://github.com/smithay/smithay.git"
|
||||
branch = "30dc3abb57"
|
||||
default-features = false
|
||||
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", "slog-stdlog", "xwayland"]
|
||||
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"]
|
||||
|
||||
[dependencies.smithay-egui]
|
||||
git = "https://github.com/Smithay/smithay-egui.git"
|
||||
rev = "610a7dbf80"
|
||||
rev = "1145f5ff91"
|
||||
features = ["svg"]
|
||||
optional = true
|
||||
|
||||
[features]
|
||||
default = []
|
||||
debug = ["egui", "smithay-egui", "renderdoc"]
|
||||
debug = ["egui", "smithay-egui", "renderdoc", "anyhow/backtrace"]
|
||||
|
||||
[profile.dev]
|
||||
lto = "thin"
|
||||
|
|
@ -70,4 +67,4 @@ debug = true
|
|||
lto = "fat"
|
||||
|
||||
[patch."https://github.com/Smithay/smithay.git"]
|
||||
smithay = { git = "https://github.com/smithay//smithay", rev = "09e29418e5" }
|
||||
smithay = { git = "https://github.com/pop-os/smithay", rev = "6276454e856" }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue