-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
174 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cosmic-time" | ||
version = "0.3.0" | ||
version = "0.4.0" | ||
edition = "2021" | ||
description = "An animation Crate for Iced and Cosmic DE" | ||
authors = ["Brock Szuszczewicz <[email protected]>"] | ||
|
@@ -24,13 +24,14 @@ members = [ | |
] | ||
|
||
[dependencies] | ||
iced = { version = "0.10.0", features = [ "tokio" ], optional = true } | ||
iced_runtime = { version = "0.1.1", optional = true } | ||
iced_widget = { version = "0.1.3", optional = true } | ||
iced_futures = { version = "0.7.0", optional = true } | ||
iced_core = { version = "0.10.0", optional = true } | ||
iced_style = { version = "0.9.0", optional = true } | ||
libcosmic = { git = "https://github.com/pop-os/libcosmic/", default-features = false, features = [ "tokio" ], optional = true } | ||
iced = { git = "https://github.com/iced-rs/iced", rev = "7f8b176", features = ["tokio"], optional = true } | ||
# iced = { version = "0.12.0", features = [ "tokio" ], optional = true } | ||
iced_runtime = { git = "https://github.com/iced-rs/iced", rev = "7f8b176", optional = true } | ||
iced_widget = { git = "https://github.com/iced-rs/iced", rev = "7f8b176", optional = true } | ||
iced_futures = { git = "https://github.com/iced-rs/iced", rev = "7f8b176", optional = true } | ||
iced_core = { git = "https://github.com/iced-rs/iced", rev = "7f8b176", optional = true } | ||
iced_style = { git = "https://github.com/iced-rs/iced", rev = "7f8b176", optional = true } | ||
libcosmic = { git = "https://github.com/pop-os/libcosmic/", default-features = false, features = [ "tokio" ], branch = "update-0.12", optional = true } | ||
# libcosmic = { path = "../libcosmic", optional = true, features = [ "tokio" ]} | ||
once_cell = { version = "1.18.0", optional = true } | ||
float-cmp = "0.9" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
pub use iced; | ||
pub use iced_core; | ||
pub use iced_futures; | ||
pub use iced_runtime; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
pub use cosmic::iced; | ||
pub use cosmic::iced_core; | ||
pub use cosmic::iced_futures; | ||
pub use cosmic::iced_runtime; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.