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]
|
|
|
|
|
default = []
|
|
|
|
|
debug = ["iced/debug"]
|
|
|
|
|
|
2021-11-16 09:36:54 -07:00
|
|
|
[dependencies]
|
2022-09-30 08:55:37 -06:00
|
|
|
freedesktop-icons = "0.2.1"
|
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"
|
|
|
|
|
palette = "0.6.1"
|
|
|
|
|
|
|
|
|
|
[dependencies.cosmic-theme]
|
|
|
|
|
git = "https://github.com/pop-os/cosmic-theme.git"
|
2021-12-21 14:51:57 -05:00
|
|
|
|
2022-09-30 08:55:37 -06:00
|
|
|
[dependencies.iced]
|
2022-10-03 19:58:14 -06:00
|
|
|
git = "https://github.com/pop-os/iced.git"
|
2022-11-09 21:33:23 +01:00
|
|
|
branch = "sctk-cosmic"
|
2022-10-07 05:20:06 +02:00
|
|
|
# path = "../iced"
|
2022-10-28 21:59:41 -07:00
|
|
|
features = ["image", "svg"]
|
|
|
|
|
|
|
|
|
|
[dependencies.iced_core]
|
|
|
|
|
git = "https://github.com/pop-os/iced.git"
|
2022-11-09 21:33:23 +01:00
|
|
|
branch = "sctk-cosmic"
|
2022-10-28 21:59:41 -07:00
|
|
|
# path = "../iced/core"
|
2022-02-24 14:03:01 -05:00
|
|
|
|
2022-10-18 10:07:32 -06:00
|
|
|
[dependencies.iced_lazy]
|
2022-10-08 04:28:29 -07:00
|
|
|
git = "https://github.com/pop-os/iced.git"
|
2022-11-09 21:33:23 +01:00
|
|
|
branch = "sctk-cosmic"
|
2022-10-18 10:07:32 -06:00
|
|
|
# path = "../iced/lazy"
|
2022-10-08 04:28:29 -07:00
|
|
|
|
2022-09-30 10:20:03 -06:00
|
|
|
[dependencies.iced_native]
|
2022-10-03 19:58:14 -06:00
|
|
|
git = "https://github.com/pop-os/iced.git"
|
2022-11-09 21:33:23 +01:00
|
|
|
branch = "sctk-cosmic"
|
2022-10-07 05:20:06 +02:00
|
|
|
# path = "../iced/native"
|
2022-09-30 10:20:03 -06:00
|
|
|
|
2022-10-18 10:07:32 -06:00
|
|
|
[dependencies.iced_style]
|
2022-10-03 19:58:14 -06:00
|
|
|
git = "https://github.com/pop-os/iced.git"
|
2022-11-09 21:33:23 +01:00
|
|
|
branch = "sctk-cosmic"
|
2022-10-18 10:07:32 -06:00
|
|
|
# path = "../iced/style"
|
2022-10-07 05:20:06 +02:00
|
|
|
|
|
|
|
|
[dependencies.iced_winit]
|
|
|
|
|
git = "https://github.com/pop-os/iced.git"
|
2022-11-09 21:33:23 +01:00
|
|
|
branch = "sctk-cosmic"
|
2022-10-07 05:20:06 +02:00
|
|
|
# path = "../iced/winit"
|
2022-09-30 12:26:14 -06:00
|
|
|
|
2022-10-28 21:59:41 -07:00
|
|
|
[dependencies.iced_wgpu]
|
|
|
|
|
git = "https://github.com/pop-os/iced.git"
|
2022-11-09 21:33:23 +01:00
|
|
|
branch = "sctk-cosmic"
|
2022-10-28 21:59:41 -07:00
|
|
|
# path = "../iced/wgpu"
|
|
|
|
|
|
2022-02-24 14:03:01 -05:00
|
|
|
[workspace]
|
2022-09-30 08:55:37 -06:00
|
|
|
members = [
|
2022-10-07 05:20:06 +02:00
|
|
|
"examples/*",
|
2022-09-30 08:55:37 -06:00
|
|
|
"gtk4",
|
|
|
|
|
"gtk4/widgets"
|
|
|
|
|
]
|