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 --- examples/system_information/Cargo.toml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 examples/system_information/Cargo.toml (limited to 'examples/system_information/Cargo.toml') diff --git a/examples/system_information/Cargo.toml b/examples/system_information/Cargo.toml new file mode 100644 index 00000000..d3d76182 --- /dev/null +++ b/examples/system_information/Cargo.toml @@ -0,0 +1,10 @@ +[package] +name = "system_information" +version = "0.1.0" +authors = ["Richard "] +edition = "2021" +publish = false + +[dependencies] +iced = { path = "../..", features = ["sysinfo"] } +bytesize = { version = "1.1.0" } \ No newline at end of file -- 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 --- examples/system_information/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/system_information/Cargo.toml') diff --git a/examples/system_information/Cargo.toml b/examples/system_information/Cargo.toml index d3d76182..13a59d5e 100644 --- a/examples/system_information/Cargo.toml +++ b/examples/system_information/Cargo.toml @@ -6,5 +6,5 @@ edition = "2021" publish = false [dependencies] -iced = { path = "../..", features = ["sysinfo"] } +iced = { path = "../.." } bytesize = { version = "1.1.0" } \ No newline at end of file -- 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 --- examples/system_information/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/system_information/Cargo.toml') diff --git a/examples/system_information/Cargo.toml b/examples/system_information/Cargo.toml index 13a59d5e..7d1e4b94 100644 --- a/examples/system_information/Cargo.toml +++ b/examples/system_information/Cargo.toml @@ -6,5 +6,5 @@ edition = "2021" publish = false [dependencies] -iced = { path = "../.." } -bytesize = { version = "1.1.0" } \ No newline at end of file +iced = { path = "../..", features = ["system"] } +bytesize = { version = "1.1.0" } -- cgit