Add a description and license to all Cargo.toml files

This commit is contained in:
elkowar 2022-05-09 18:56:32 +02:00
parent 33a4f459bb
commit 6f574e547a
No known key found for this signature in database
GPG key ID: E321AD71B1D1F27F
5 changed files with 14 additions and 13 deletions

View file

@ -1,12 +0,0 @@
{
"configurations": {
"launch": {
"adapter": "CodeLLDB",
"configuration": {
"request": "launch",
"program": "${workspaceRoot}/target/debug/eww",
"args": ["open", "main_window"]
}
}
}
}

View file

@ -2,7 +2,7 @@
name = "eww" name = "eww"
version = "0.2.0" version = "0.2.0"
authors = ["elkowar <5300871+elkowar@users.noreply.github.com>"] authors = ["elkowar <5300871+elkowar@users.noreply.github.com>"]
description = "Widget system for everyone!" description = "Widgets for everyone!"
license = "MIT" license = "MIT"
repository = "https://github.com/elkowar/eww" repository = "https://github.com/elkowar/eww"
homepage = "https://github.com/elkowar/eww" homepage = "https://github.com/elkowar/eww"

View file

@ -1,7 +1,12 @@
[package] [package]
name = "eww_shared_util" name = "eww_shared_util"
version = "0.1.0" version = "0.1.0"
authors = ["elkowar <5300871+elkowar@users.noreply.github.com>"]
edition = "2021" edition = "2021"
license = "MIT"
description = "Utility crate used in eww"
repository = "https://github.com/elkowar/eww"
homepage = "https://github.com/elkowar/eww"
[dependencies] [dependencies]
serde = {version = "1.0", features = ["derive"]} serde = {version = "1.0", features = ["derive"]}

View file

@ -3,6 +3,10 @@ name = "simplexpr"
version = "0.1.0" version = "0.1.0"
authors = ["elkowar <5300871+elkowar@users.noreply.github.com>"] authors = ["elkowar <5300871+elkowar@users.noreply.github.com>"]
edition = "2021" 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" build = "build.rs"

View file

@ -3,6 +3,10 @@ name = "yuck"
version = "0.1.0" version = "0.1.0"
authors = ["elkowar <5300871+elkowar@users.noreply.github.com>"] authors = ["elkowar <5300871+elkowar@users.noreply.github.com>"]
edition = "2021" 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" build = "build.rs"