cosmic-settings/Cargo.toml

79 lines
2.5 KiB
TOML
Raw Normal View History

[workspace]
members = ["cosmic-settings", "crates/*", "page", "pages/*", "subscriptions/*"]
default-members = ["cosmic-settings"]
2025-09-12 14:59:30 +02:00
resolver = "3"
[workspace.package]
2025-09-12 14:59:30 +02:00
rust-version = "1.85"
[workspace.dependencies]
cosmic-randr = { git = "https://github.com/pop-os/cosmic-randr" }
tokio = { version = "1.48.0", features = ["macros"] }
[workspace.dependencies.libcosmic]
features = ["dbus-config", "multi-window", "winit", "tokio", "qr_code"]
git = "https://github.com/pop-os/libcosmic"
[workspace.dependencies.cosmic-config]
git = "https://github.com/pop-os/libcosmic"
[workspace.dependencies.cosmic-bg-config]
git = "https://github.com/pop-os/cosmic-bg"
2023-08-29 14:28:05 -07:00
[workspace.dependencies.cosmic-comp-config]
git = "https://github.com/pop-os/cosmic-comp"
2025-08-26 19:37:51 -04:00
features = ["output"]
2023-08-29 14:28:05 -07:00
2024-10-17 19:09:58 -07:00
[workspace.dependencies.cosmic-idle-config]
git = "https://github.com/pop-os/cosmic-idle"
[workspace.dependencies.cosmic-panel-config]
git = "https://github.com/pop-os/cosmic-panel"
[workspace.dependencies.cosmic-randr-shell]
git = "https://github.com/pop-os/cosmic-randr"
2023-12-22 16:42:56 +01:00
[workspace.dependencies.sctk]
git = "https://github.com/smithay/client-toolkit/"
package = "smithay-client-toolkit"
2024-07-31 08:08:34 +02:00
# rev = "c583de8"
2023-09-20 11:54:36 -04:00
[profile.dev]
opt-level = 3
lto = "off"
2024-11-14 11:20:56 -05:00
[profile.release]
opt-level = 3
lto = "thin"
panic = "abort"
[profile.release-with-debug]
inherits = "release"
lto = "off"
debug = true
# Fix text rendering being cut off on the right
2025-08-12 18:12:08 +02:00
# [patch.'https://github.com/pop-os/cosmic-text']
# cosmic-text = { git = "https://github.com/pop-os/cosmic-text//", rev = "b017d7c" }
2025-06-23 18:04:20 +02:00
[patch.'https://github.com/pop-os/cosmic-protocols']
2025-10-03 14:55:46 -04:00
cosmic-protocols = { git = "https://github.com/pop-os/cosmic-protocols//", rev = "d0e95be" }
cosmic-client-toolkit = { git = "https://github.com/pop-os/cosmic-protocols//", rev = "d0e95be" }
# [patch.'https://github.com/pop-os/cosmic-settings-daemon']
# cosmic-settings-config = { git = "https://github.com/pop-os/cosmic-settings-daemon//", branch = "input_nobuild" }
# For development and testing purposes
2025-07-29 17:09:27 -04:00
# [patch.'https://github.com/pop-os/libcosmic']
2024-11-01 22:53:26 -04:00
# libcosmic = { path = "../libcosmic" }
# cosmic-config = { path = "../libcosmic/cosmic-config" }
# cosmic-theme = { path = "../libcosmic/cosmic-theme" }
2025-06-23 17:17:07 +02:00
# iced_futures = { path = "../libcosmic/iced/futures" }
# [patch.'https://github.com/pop-os/dbus-settings-bindings']
# cosmic-dbus-networkmanager = { path = "../dbus-settings-bindings/networkmanager" }
# upower_dbus = { path = "../dbus-settings-bindings/upower" }
2025-02-14 01:48:26 +01:00
2024-11-01 11:41:20 -04:00
[patch."https://github.com/smithay/client-toolkit.git"]
2025-09-12 14:59:30 +02:00
sctk = { package = "smithay-client-toolkit", version = "0.20.0" }