From 6e937131970d1e7b32204096e5f6c67de3fe6dfb Mon Sep 17 00:00:00 2001 From: Richard Date: Wed, 16 Feb 2022 19:11:42 -0300 Subject: Add `sysinfo` crate through feature flag --- Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index c6ccc5df..6c69706a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -42,6 +42,8 @@ smol = ["iced_futures/smol"] palette = ["iced_core/palette"] # Enables pure, virtual widgets in the `pure` module pure = ["iced_pure", "iced_graphics/pure"] +# Enables system information querying `Action` +sysinfo = ["iced_winit/sysinfo"] [badges] maintenance = { status = "actively-developed" } -- cgit From 53538b65b1c557015c2900fc28b8916cf719a10b Mon Sep 17 00:00:00 2001 From: Richard Date: Thu, 10 Mar 2022 03:02:17 -0300 Subject: Add `system_information` example --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 6c69706a..500fa06e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -96,6 +96,7 @@ members = [ "examples/pure/todos", "examples/pure/tour", "examples/websocket", + "examples/system_information" ] [dependencies] -- cgit From 5eefa5d4ead9ebfac7dab1db9aebf9797d2dad38 Mon Sep 17 00:00:00 2001 From: Richard Date: Wed, 27 Apr 2022 16:18:27 -0300 Subject: Simplify the `QueryInformation` Action --- Cargo.toml | 2 -- 1 file changed, 2 deletions(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 500fa06e..21bb6dd2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -42,8 +42,6 @@ smol = ["iced_futures/smol"] palette = ["iced_core/palette"] # Enables pure, virtual widgets in the `pure` module pure = ["iced_pure", "iced_graphics/pure"] -# Enables system information querying `Action` -sysinfo = ["iced_winit/sysinfo"] [badges] maintenance = { status = "actively-developed" } -- cgit From 93bfe2c75ec97ef78f993926c703f040dde4a5f3 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Sat, 30 Apr 2022 13:37:57 +0200 Subject: Expose `system` module through feature flag --- Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 21bb6dd2..75e57352 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -42,6 +42,8 @@ smol = ["iced_futures/smol"] palette = ["iced_core/palette"] # Enables pure, virtual widgets in the `pure` module pure = ["iced_pure", "iced_graphics/pure"] +# Enables querying system information +system = ["iced_winit/system"] [badges] maintenance = { status = "actively-developed" } -- cgit From a97c520c814a6d3cc538537791be39e0c3182d6d Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Wed, 4 May 2022 17:17:07 +0200 Subject: Sort workspace members in `Cargo.toml` --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 75e57352..632c66fc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -84,10 +84,12 @@ members = [ "examples/stopwatch", "examples/styling", "examples/svg", + "examples/system_information", "examples/todos", "examples/tooltip", "examples/tour", "examples/url_handler", + "examples/websocket", "examples/pure/component", "examples/pure/counter", "examples/pure/game_of_life", @@ -95,8 +97,6 @@ members = [ "examples/pure/pick_list", "examples/pure/todos", "examples/pure/tour", - "examples/websocket", - "examples/system_information" ] [dependencies] -- cgit