Expose iced_native and iced_style

This commit is contained in:
Jeremy Soller 2022-10-18 10:07:32 -06:00
parent 91f79dff95
commit 621febe95d
No known key found for this signature in database
GPG key ID: 87F211AF2BE4C2FE
2 changed files with 7 additions and 5 deletions

View file

@ -21,11 +21,10 @@ branch = "cosmic-design-system"
# path = "../iced"
features = ["cosmic-theme", "svg"]
[dependencies.iced_style]
[dependencies.iced_lazy]
git = "https://github.com/pop-os/iced.git"
branch = "cosmic-design-system"
# path = "../iced/style"
features = ["cosmic-theme"]
# path = "../iced/lazy"
[dependencies.iced_native]
git = "https://github.com/pop-os/iced.git"
@ -33,10 +32,11 @@ branch = "cosmic-design-system"
# path = "../iced/native"
features = ["cosmic-theme"]
[dependencies.iced_lazy]
[dependencies.iced_style]
git = "https://github.com/pop-os/iced.git"
branch = "cosmic-design-system"
# path = "../iced/lazy"
# path = "../iced/style"
features = ["cosmic-theme"]
[dependencies.iced_winit]
git = "https://github.com/pop-os/iced.git"

View file

@ -1,5 +1,7 @@
pub use iced;
pub use iced_lazy;
pub use iced_native;
pub use iced_style;
pub use iced_winit;
pub mod font;