summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Cargo.toml22
-rw-r--r--core/Cargo.toml2
-rw-r--r--futures/Cargo.toml2
-rw-r--r--glow/Cargo.toml8
-rw-r--r--glutin/Cargo.toml8
-rw-r--r--graphics/Cargo.toml10
-rw-r--r--lazy/Cargo.toml11
-rw-r--r--native/Cargo.toml8
-rw-r--r--pure/Cargo.toml12
-rw-r--r--style/Cargo.toml4
-rw-r--r--wgpu/Cargo.toml6
-rw-r--r--winit/Cargo.toml10
12 files changed, 58 insertions, 45 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 899d392a..fcb14899 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "iced"
-version = "0.3.0"
+version = "0.4.0"
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
edition = "2021"
description = "A cross-platform GUI library inspired by Elm"
@@ -98,21 +98,21 @@ members = [
]
[dependencies]
-iced_core = { version = "0.4", path = "core" }
-iced_futures = { version = "0.3", path = "futures" }
-iced_native = { version = "0.4", path = "native" }
-iced_graphics = { version = "0.2", path = "graphics" }
-iced_winit = { version = "0.3", path = "winit" }
-iced_glutin = { version = "0.2", path = "glutin", optional = true }
-iced_glow = { version = "0.2", path = "glow", optional = true }
-iced_pure = { version = "0.1", path = "pure", optional = true }
+iced_core = { version = "0.5", path = "core" }
+iced_futures = { version = "0.4", path = "futures" }
+iced_native = { version = "0.5", path = "native" }
+iced_graphics = { version = "0.3", path = "graphics" }
+iced_winit = { version = "0.4", path = "winit" }
+iced_glutin = { version = "0.3", path = "glutin", optional = true }
+iced_glow = { version = "0.3", path = "glow", optional = true }
+iced_pure = { version = "0.2", path = "pure", optional = true }
thiserror = "1.0"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
-iced_wgpu = { version = "0.4", path = "wgpu", optional = true }
+iced_wgpu = { version = "0.5", path = "wgpu", optional = true }
[target.'cfg(target_arch = "wasm32")'.dependencies]
-iced_wgpu = { version = "0.4", path = "wgpu", features = ["webgl"], optional = true }
+iced_wgpu = { version = "0.5", path = "wgpu", features = ["webgl"], optional = true }
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]
diff --git a/core/Cargo.toml b/core/Cargo.toml
index a8d50801..c9c7686e 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "iced_core"
-version = "0.4.0"
+version = "0.5.0"
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
edition = "2021"
description = "The essential concepts of Iced"
diff --git a/futures/Cargo.toml b/futures/Cargo.toml
index 78e673e0..ed99d79a 100644
--- a/futures/Cargo.toml
+++ b/futures/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "iced_futures"
-version = "0.3.0"
+version = "0.4.0"
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
edition = "2021"
description = "Commands, subscriptions, and runtimes for Iced"
diff --git a/glow/Cargo.toml b/glow/Cargo.toml
index e0907a66..18215e9b 100644
--- a/glow/Cargo.toml
+++ b/glow/Cargo.toml
@@ -1,11 +1,11 @@
[package]
name = "iced_glow"
-version = "0.2.0"
+version = "0.3.0"
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
edition = "2021"
description = "A glow renderer for iced"
license = "MIT AND OFL-1.1"
-repository = "https://github.com/hecrj/iced"
+repository = "https://github.com/iced-rs/iced"
[features]
canvas = ["iced_graphics/canvas"]
@@ -24,11 +24,11 @@ bytemuck = "1.4"
log = "0.4"
[dependencies.iced_native]
-version = "0.4"
+version = "0.5"
path = "../native"
[dependencies.iced_graphics]
-version = "0.2"
+version = "0.3"
path = "../graphics"
features = ["font-fallback", "font-icons", "opengl"]
diff --git a/glutin/Cargo.toml b/glutin/Cargo.toml
index d1b0468d..fca0cd9f 100644
--- a/glutin/Cargo.toml
+++ b/glutin/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "iced_glutin"
-version = "0.2.0"
+version = "0.3.0"
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
edition = "2021"
description = "A glutin runtime for Iced"
@@ -19,14 +19,14 @@ git = "https://github.com/iced-rs/glutin"
rev = "7a0ee02782eb2bf059095e0c953c4bb53f1eef0e"
[dependencies.iced_native]
-version = "0.4"
+version = "0.5"
path = "../native"
[dependencies.iced_winit]
-version = "0.3"
+version = "0.4"
path = "../winit"
[dependencies.iced_graphics]
-version = "0.2"
+version = "0.3"
path = "../graphics"
features = ["opengl"]
diff --git a/graphics/Cargo.toml b/graphics/Cargo.toml
index a84acbd6..e916975d 100644
--- a/graphics/Cargo.toml
+++ b/graphics/Cargo.toml
@@ -1,11 +1,11 @@
[package]
name = "iced_graphics"
-version = "0.2.0"
+version = "0.3.0"
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
edition = "2021"
description = "A bunch of backend-agnostic types that can be leveraged to build a renderer for Iced"
license = "MIT"
-repository = "https://github.com/hecrj/iced"
+repository = "https://github.com/iced-rs/iced"
documentation = "https://docs.rs/iced_graphics"
keywords = ["gui", "ui", "graphics", "interface", "widgets"]
categories = ["gui"]
@@ -29,15 +29,15 @@ version = "1.4"
features = ["derive"]
[dependencies.iced_native]
-version = "0.4"
+version = "0.5"
path = "../native"
[dependencies.iced_style]
-version = "0.3"
+version = "0.4"
path = "../style"
[dependencies.iced_pure]
-version = "0.1"
+version = "0.2"
path = "../pure"
optional = true
diff --git a/lazy/Cargo.toml b/lazy/Cargo.toml
index 2d7451f3..7d439e47 100644
--- a/lazy/Cargo.toml
+++ b/lazy/Cargo.toml
@@ -1,7 +1,14 @@
[package]
name = "iced_lazy"
version = "0.1.0"
+authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
edition = "2021"
+description = "Lazy widgets for Iced"
+license = "MIT"
+repository = "https://github.com/iced-rs/iced"
+documentation = "https://docs.rs/iced_lazy"
+keywords = ["gui", "ui", "graphics", "interface", "widgets"]
+categories = ["gui"]
[features]
pure = ["iced_pure"]
@@ -10,10 +17,10 @@ pure = ["iced_pure"]
ouroboros = "0.13"
[dependencies.iced_native]
-version = "0.4"
+version = "0.5"
path = "../native"
[dependencies.iced_pure]
-version = "0.1"
+version = "0.2"
path = "../pure"
optional = true
diff --git a/native/Cargo.toml b/native/Cargo.toml
index c4b363ae..a21385de 100644
--- a/native/Cargo.toml
+++ b/native/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "iced_native"
-version = "0.4.0"
+version = "0.5.0"
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
edition = "2021"
description = "A renderer-agnostic library for native GUIs"
@@ -16,14 +16,14 @@ unicode-segmentation = "1.6"
num-traits = "0.2"
[dependencies.iced_core]
-version = "0.4"
+version = "0.5"
path = "../core"
[dependencies.iced_futures]
-version = "0.3"
+version = "0.4"
path = "../futures"
features = ["thread-pool"]
[dependencies.iced_style]
-version = "0.3"
+version = "0.4"
path = "../style"
diff --git a/pure/Cargo.toml b/pure/Cargo.toml
index 317dccdf..8369a717 100644
--- a/pure/Cargo.toml
+++ b/pure/Cargo.toml
@@ -1,9 +1,15 @@
[package]
name = "iced_pure"
-version = "0.1.0"
+version = "0.2.0"
edition = "2021"
+description = "Pure widgets for Iced"
+license = "MIT"
+repository = "https://github.com/iced-rs/iced"
+documentation = "https://docs.rs/iced_pure"
+keywords = ["gui", "ui", "graphics", "interface", "widgets"]
+categories = ["gui"]
[dependencies]
-iced_native = { version = "0.4", path = "../native" }
-iced_style = { version = "0.3", path = "../style" }
+iced_native = { version = "0.5", path = "../native" }
+iced_style = { version = "0.4", path = "../style" }
num-traits = "0.2"
diff --git a/style/Cargo.toml b/style/Cargo.toml
index 047c905d..bb2a9645 100644
--- a/style/Cargo.toml
+++ b/style/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "iced_style"
-version = "0.3.0"
+version = "0.4.0"
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
edition = "2021"
description = "The default set of styles of Iced"
@@ -11,5 +11,5 @@ keywords = ["gui", "ui", "graphics", "interface", "widgets"]
categories = ["gui"]
[dependencies.iced_core]
-version = "0.4"
+version = "0.5"
path = "../core"
diff --git a/wgpu/Cargo.toml b/wgpu/Cargo.toml
index b4173413..6911ff56 100644
--- a/wgpu/Cargo.toml
+++ b/wgpu/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "iced_wgpu"
-version = "0.4.0"
+version = "0.5.0"
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
edition = "2021"
description = "A wgpu renderer for Iced"
@@ -43,11 +43,11 @@ version = "1.4"
features = ["derive"]
[dependencies.iced_native]
-version = "0.4"
+version = "0.5"
path = "../native"
[dependencies.iced_graphics]
-version = "0.2"
+version = "0.3"
path = "../graphics"
features = ["font-fallback", "font-icons"]
diff --git a/winit/Cargo.toml b/winit/Cargo.toml
index f7232248..2beebdfb 100644
--- a/winit/Cargo.toml
+++ b/winit/Cargo.toml
@@ -1,11 +1,11 @@
[package]
name = "iced_winit"
-version = "0.3.0"
+version = "0.4.0"
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
edition = "2021"
description = "A winit runtime for Iced"
license = "MIT"
-repository = "https://github.com/hecrj/iced"
+repository = "https://github.com/iced-rs/iced"
documentation = "https://docs.rs/iced_winit"
keywords = ["gui", "ui", "graphics", "interface", "widgets"]
categories = ["gui"]
@@ -24,15 +24,15 @@ git = "https://github.com/iced-rs/winit"
rev = "02a12380960cec2f351c09a33d6a7cc2789d96a6"
[dependencies.iced_native]
-version = "0.4"
+version = "0.5"
path = "../native"
[dependencies.iced_graphics]
-version = "0.2"
+version = "0.3"
path = "../graphics"
[dependencies.iced_futures]
-version = "0.3"
+version = "0.4"
path = "../futures"
[target.'cfg(target_os = "windows")'.dependencies.winapi]