2021-11-16 09:36:54 -07:00
|
|
|
[package]
|
|
|
|
|
name = "libcosmic"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
2022-09-30 09:35:55 -06:00
|
|
|
[lib]
|
|
|
|
|
name = "cosmic"
|
|
|
|
|
|
2022-09-30 12:32:17 -06:00
|
|
|
[features]
|
2023-08-02 11:54:07 +02:00
|
|
|
default = ["wayland", "tokio", "a11y"]
|
2023-08-15 10:58:46 +02:00
|
|
|
# Accessibility support
|
2023-05-30 12:03:15 -04:00
|
|
|
a11y = ["iced/a11y", "iced_accessibility"]
|
2023-08-15 10:58:46 +02:00
|
|
|
# Builds support for animated images
|
|
|
|
|
animated-image = ["image", "dep:async-fs", "tokio?/io-util", "tokio?/fs"]
|
|
|
|
|
# Debug features
|
|
|
|
|
debug = ["iced/debug"]
|
|
|
|
|
# Enables pipewire support in ashpd, if ashpd is enabled
|
|
|
|
|
pipewire = ["ashpd?/pipewire"]
|
|
|
|
|
# smol async runtime
|
2023-06-01 16:12:57 -06:00
|
|
|
smol = ["iced/smol"]
|
2023-08-15 10:58:46 +02:00
|
|
|
# Tokio async runtime
|
|
|
|
|
tokio = ["dep:tokio", "ashpd/tokio", "iced/tokio"]
|
|
|
|
|
# Wayland window support
|
|
|
|
|
wayland = ["ashpd?/wayland", "iced/wayland", "iced_sctk", "sctk"]
|
|
|
|
|
# Render with wgpu
|
|
|
|
|
wgpu = ["iced/wgpu", "iced_wgpu"]
|
|
|
|
|
# X11 window support via winit
|
2022-11-15 23:11:48 +01:00
|
|
|
winit = ["iced/winit", "iced_winit"]
|
2023-06-15 11:38:25 -04:00
|
|
|
winit_debug = ["iced/winit", "iced_winit", "debug"]
|
2023-08-15 10:58:46 +02:00
|
|
|
winit_tokio = ["iced/winit", "iced_winit", "tokio"]
|
2023-01-03 21:33:11 +01:00
|
|
|
winit_wgpu = ["winit", "wgpu"]
|
2023-08-15 10:58:46 +02:00
|
|
|
# Enables XDG portal integrations
|
|
|
|
|
xdg-portal = ["ashpd"]
|
2023-04-24 18:15:35 -07:00
|
|
|
|
2021-11-16 09:36:54 -07:00
|
|
|
[dependencies]
|
2022-10-07 05:20:06 +02:00
|
|
|
apply = "0.3.0"
|
2022-10-11 15:27:39 +02:00
|
|
|
derive_setters = "0.1.5"
|
2022-10-28 21:59:41 -07:00
|
|
|
lazy_static = "1.4.0"
|
2023-08-10 10:53:54 -04:00
|
|
|
palette = "0.7.3"
|
2023-01-18 15:09:55 -08:00
|
|
|
tokio = { version = "1.24.2", optional = true }
|
2023-07-25 09:31:07 -07:00
|
|
|
sctk = { package = "smithay-client-toolkit", git = "https://github.com/smithay/client-toolkit", optional = true, rev = "c9940f4"}
|
2022-12-28 12:42:28 +01:00
|
|
|
slotmap = "1.0.6"
|
2023-01-19 19:45:39 +01:00
|
|
|
fraction = "0.13.0"
|
2023-05-30 12:03:15 -04:00
|
|
|
cosmic-config = { path = "cosmic-config" }
|
2023-06-12 12:08:14 -04:00
|
|
|
tracing = "0.1"
|
2023-07-26 16:32:23 -04:00
|
|
|
image = { version = "0.24.6", optional = true }
|
|
|
|
|
thiserror = "1.0.44"
|
|
|
|
|
async-fs = { version = "1.6", optional = true }
|
2023-08-15 10:58:46 +02:00
|
|
|
ashpd = { version = "0.5.0", default-features = false, optional = true }
|
|
|
|
|
url = "2.4.0"
|
2022-10-28 21:59:41 -07:00
|
|
|
|
2023-04-24 18:15:35 -07:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
|
|
|
freedesktop-icons = "0.2.2"
|
|
|
|
|
|
2022-10-28 21:59:41 -07:00
|
|
|
[dependencies.cosmic-theme]
|
2023-05-30 12:03:15 -04:00
|
|
|
path = "cosmic-theme"
|
2021-12-21 14:51:57 -05:00
|
|
|
|
2022-09-30 08:55:37 -06:00
|
|
|
[dependencies.iced]
|
2022-12-13 08:55:15 -07:00
|
|
|
path = "iced"
|
2022-11-10 16:19:13 +01:00
|
|
|
default-features = false
|
2023-05-30 12:03:15 -04:00
|
|
|
features = ["image", "svg", "lazy"]
|
|
|
|
|
|
|
|
|
|
[dependencies.iced_runtime]
|
|
|
|
|
path = "iced/runtime"
|
2022-10-28 21:59:41 -07:00
|
|
|
|
2023-06-01 16:12:57 -06:00
|
|
|
[dependencies.iced_renderer]
|
|
|
|
|
path = "iced/renderer"
|
|
|
|
|
|
2022-10-28 21:59:41 -07:00
|
|
|
[dependencies.iced_core]
|
2022-12-13 08:55:15 -07:00
|
|
|
path = "iced/core"
|
2022-02-24 14:03:01 -05:00
|
|
|
|
2023-05-30 12:03:15 -04:00
|
|
|
[dependencies.iced_widget]
|
|
|
|
|
path = "iced/widget"
|
2022-10-08 04:28:29 -07:00
|
|
|
|
2023-06-01 16:12:57 -06:00
|
|
|
[dependencies.iced_futures]
|
|
|
|
|
path = "iced/futures"
|
|
|
|
|
|
2023-05-30 12:03:15 -04:00
|
|
|
[dependencies.iced_accessibility]
|
|
|
|
|
path = "iced/accessibility"
|
2022-09-30 10:20:03 -06:00
|
|
|
|
2022-12-19 15:42:10 -07:00
|
|
|
optional = true
|
2023-06-15 11:16:32 -04:00
|
|
|
|
2023-05-30 12:03:15 -04:00
|
|
|
[dependencies.iced_tiny_skia]
|
|
|
|
|
path = "iced/tiny_skia"
|
2023-01-18 19:01:16 -05:00
|
|
|
|
2022-10-18 10:07:32 -06:00
|
|
|
[dependencies.iced_style]
|
2022-12-13 08:55:15 -07:00
|
|
|
path = "iced/style"
|
2022-10-07 05:20:06 +02:00
|
|
|
|
2023-01-18 15:13:03 -08:00
|
|
|
[dependencies.iced_sctk]
|
|
|
|
|
path = "iced/sctk"
|
|
|
|
|
optional = true
|
|
|
|
|
|
2022-10-07 05:20:06 +02:00
|
|
|
[dependencies.iced_winit]
|
2022-12-13 08:55:15 -07:00
|
|
|
path = "iced/winit"
|
2022-11-14 00:38:57 +01:00
|
|
|
optional = true
|
2022-09-30 12:26:14 -06:00
|
|
|
|
2022-10-28 21:59:41 -07:00
|
|
|
[dependencies.iced_wgpu]
|
2022-12-13 08:55:15 -07:00
|
|
|
path = "iced/wgpu"
|
2022-12-13 16:15:36 -05:00
|
|
|
optional = true
|
|
|
|
|
|
2022-02-24 14:03:01 -05:00
|
|
|
[workspace]
|
2022-09-30 08:55:37 -06:00
|
|
|
members = [
|
2023-03-05 10:44:04 -07:00
|
|
|
"cosmic-config",
|
2023-05-30 12:03:15 -04:00
|
|
|
"cosmic-config-derive",
|
|
|
|
|
"cosmic-theme",
|
2022-10-07 05:20:06 +02:00
|
|
|
"examples/*",
|
2022-09-30 08:55:37 -06:00
|
|
|
]
|
2022-12-13 08:55:15 -07:00
|
|
|
exclude = [
|
|
|
|
|
"iced",
|
|
|
|
|
]
|
2023-06-15 13:06:30 -04:00
|
|
|
|
|
|
|
|
[patch."https://github.com/pop-os/libcosmic"]
|
|
|
|
|
libcosmic = { path = "./", features = ["wayland", "tokio", "a11y"]}
|