From 6f574e547adf4c35e660f2c1c7610eb74251d747 Mon Sep 17 00:00:00 2001 From: elkowar <5300871+elkowar@users.noreply.github.com> Date: Mon, 9 May 2022 18:56:32 +0200 Subject: [PATCH] Add a description and license to all Cargo.toml files --- .vimspector.json | 12 ------------ crates/eww/Cargo.toml | 2 +- crates/eww_shared_util/Cargo.toml | 5 +++++ crates/simplexpr/Cargo.toml | 4 ++++ crates/yuck/Cargo.toml | 4 ++++ 5 files changed, 14 insertions(+), 13 deletions(-) delete mode 100644 .vimspector.json diff --git a/.vimspector.json b/.vimspector.json deleted file mode 100644 index 0907b19..0000000 --- a/.vimspector.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "configurations": { - "launch": { - "adapter": "CodeLLDB", - "configuration": { - "request": "launch", - "program": "${workspaceRoot}/target/debug/eww", - "args": ["open", "main_window"] - } - } - } -} diff --git a/crates/eww/Cargo.toml b/crates/eww/Cargo.toml index dcc49ff..a47d737 100644 --- a/crates/eww/Cargo.toml +++ b/crates/eww/Cargo.toml @@ -2,7 +2,7 @@ name = "eww" version = "0.2.0" authors = ["elkowar <5300871+elkowar@users.noreply.github.com>"] -description = "Widget system for everyone!" +description = "Widgets for everyone!" license = "MIT" repository = "https://github.com/elkowar/eww" homepage = "https://github.com/elkowar/eww" diff --git a/crates/eww_shared_util/Cargo.toml b/crates/eww_shared_util/Cargo.toml index 187e12b..35b9e08 100644 --- a/crates/eww_shared_util/Cargo.toml +++ b/crates/eww_shared_util/Cargo.toml @@ -1,7 +1,12 @@ [package] name = "eww_shared_util" version = "0.1.0" +authors = ["elkowar <5300871+elkowar@users.noreply.github.com>"] edition = "2021" +license = "MIT" +description = "Utility crate used in eww" +repository = "https://github.com/elkowar/eww" +homepage = "https://github.com/elkowar/eww" [dependencies] serde = {version = "1.0", features = ["derive"]} diff --git a/crates/simplexpr/Cargo.toml b/crates/simplexpr/Cargo.toml index 950d5f7..c88e503 100644 --- a/crates/simplexpr/Cargo.toml +++ b/crates/simplexpr/Cargo.toml @@ -3,6 +3,10 @@ name = "simplexpr" version = "0.1.0" authors = ["elkowar <5300871+elkowar@users.noreply.github.com>"] edition = "2021" +license = "MIT" +description = "A simple expression language, used as a part of eww" +repository = "https://github.com/elkowar/eww" +homepage = "https://github.com/elkowar/eww" build = "build.rs" diff --git a/crates/yuck/Cargo.toml b/crates/yuck/Cargo.toml index 0705115..b95f7e2 100644 --- a/crates/yuck/Cargo.toml +++ b/crates/yuck/Cargo.toml @@ -3,6 +3,10 @@ name = "yuck" version = "0.1.0" authors = ["elkowar <5300871+elkowar@users.noreply.github.com>"] edition = "2021" +license = "MIT" +description = "Implementation of the yuck language, the declarative UI description language used by eww" +repository = "https://github.com/elkowar/eww" +homepage = "https://github.com/elkowar/eww" build = "build.rs"