-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
27 changed files
with
112 additions
and
79 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
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 = "iced" | ||
version = "0.5.2" | ||
version = "0.6.0" | ||
authors = ["Héctor Ramón Jiménez <[email protected]>"] | ||
edition = "2021" | ||
description = "A cross-platform GUI library inspired by Elm" | ||
|
@@ -61,11 +61,11 @@ members = [ | |
[dependencies] | ||
iced_core = { version = "0.6", path = "core" } | ||
iced_futures = { version = "0.5", path = "futures" } | ||
iced_native = { version = "0.6", path = "native" } | ||
iced_graphics = { version = "0.4", path = "graphics" } | ||
iced_winit = { version = "0.5", path = "winit", features = ["application"] } | ||
iced_glutin = { version = "0.4", path = "glutin", optional = true } | ||
iced_glow = { version = "0.4", path = "glow", optional = true } | ||
iced_native = { version = "0.7", path = "native" } | ||
iced_graphics = { version = "0.5", path = "graphics" } | ||
iced_winit = { version = "0.6", path = "winit", features = ["application"] } | ||
iced_glutin = { version = "0.5", path = "glutin", optional = true } | ||
iced_glow = { version = "0.5", path = "glow", optional = true } | ||
thiserror = "1.0" | ||
|
||
[dependencies.image_rs] | ||
|
@@ -74,10 +74,10 @@ package = "image" | |
optional = true | ||
|
||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies] | ||
iced_wgpu = { version = "0.6", path = "wgpu", optional = true } | ||
iced_wgpu = { version = "0.7", path = "wgpu", optional = true } | ||
|
||
[target.'cfg(target_arch = "wasm32")'.dependencies] | ||
iced_wgpu = { version = "0.6", path = "wgpu", features = ["webgl"], optional = true } | ||
iced_wgpu = { version = "0.7", path = "wgpu", features = ["webgl"], optional = true } | ||
|
||
[package.metadata.docs.rs] | ||
rustdoc-args = ["--cfg", "docsrs"] | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "iced_core" | ||
version = "0.6.1" | ||
version = "0.6.2" | ||
authors = ["Héctor Ramón Jiménez <[email protected]>"] | ||
edition = "2021" | ||
description = "The essential concepts of Iced" | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "iced_glow" | ||
version = "0.4.1" | ||
version = "0.5.0" | ||
authors = ["Héctor Ramón Jiménez <[email protected]>"] | ||
edition = "2021" | ||
description = "A glow renderer for iced" | ||
|
@@ -34,11 +34,11 @@ bytemuck = "1.4" | |
log = "0.4" | ||
|
||
[dependencies.iced_native] | ||
version = "0.6" | ||
version = "0.7" | ||
path = "../native" | ||
|
||
[dependencies.iced_graphics] | ||
version = "0.4" | ||
version = "0.5" | ||
path = "../graphics" | ||
features = ["font-fallback", "font-icons", "opengl"] | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "iced_glutin" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
authors = ["Héctor Ramón Jiménez <[email protected]>"] | ||
edition = "2021" | ||
description = "A glutin runtime for Iced" | ||
|
@@ -23,15 +23,15 @@ git = "https://github.com/iced-rs/glutin" | |
rev = "da8d291486b4c9bec12487a46c119c4b1d386abf" | ||
|
||
[dependencies.iced_native] | ||
version = "0.6" | ||
version = "0.7" | ||
path = "../native" | ||
|
||
[dependencies.iced_winit] | ||
version = "0.5" | ||
version = "0.6" | ||
path = "../winit" | ||
features = ["application"] | ||
|
||
[dependencies.iced_graphics] | ||
version = "0.4" | ||
version = "0.5" | ||
path = "../graphics" | ||
features = ["opengl"] |
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 = "iced_graphics" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
authors = ["Héctor Ramón Jiménez <[email protected]>"] | ||
edition = "2021" | ||
description = "A bunch of backend-agnostic types that can be leveraged to build a renderer for Iced" | ||
|
@@ -44,7 +44,7 @@ version = "1.4" | |
features = ["derive"] | ||
|
||
[dependencies.iced_native] | ||
version = "0.6" | ||
version = "0.7" | ||
path = "../native" | ||
|
||
[dependencies.iced_style] | ||
|
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 = "iced_lazy" | ||
version = "0.2.0" | ||
version = "0.3.0" | ||
authors = ["Héctor Ramón Jiménez <[email protected]>"] | ||
edition = "2021" | ||
description = "Lazy widgets for Iced" | ||
|
@@ -14,5 +14,5 @@ categories = ["gui"] | |
ouroboros = "0.13" | ||
|
||
[dependencies.iced_native] | ||
version = "0.6" | ||
version = "0.7" | ||
path = "../native" |
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 = "iced_native" | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
authors = ["Héctor Ramón Jiménez <[email protected]>"] | ||
edition = "2021" | ||
description = "A renderer-agnostic library for native GUIs" | ||
|
@@ -25,5 +25,5 @@ path = "../futures" | |
features = ["thread-pool"] | ||
|
||
[dependencies.iced_style] | ||
version = "0.5" | ||
version = "0.5.1" | ||
path = "../style" |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "iced_style" | ||
version = "0.5.0" | ||
version = "0.5.1" | ||
authors = ["Héctor Ramón Jiménez <[email protected]>"] | ||
edition = "2021" | ||
description = "The default set of styles of Iced" | ||
|
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 = "iced_wgpu" | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
authors = ["Héctor Ramón Jiménez <[email protected]>"] | ||
edition = "2021" | ||
description = "A wgpu renderer for Iced" | ||
|
@@ -42,11 +42,11 @@ version = "1.9" | |
features = ["derive"] | ||
|
||
[dependencies.iced_native] | ||
version = "0.6" | ||
version = "0.7" | ||
path = "../native" | ||
|
||
[dependencies.iced_graphics] | ||
version = "0.4" | ||
version = "0.5" | ||
path = "../graphics" | ||
features = ["font-fallback", "font-icons"] | ||
|
||
|
Oops, something went wrong.