Add a description and license to all Cargo.toml files
This commit is contained in:
parent
33a4f459bb
commit
6f574e547a
5 changed files with 14 additions and 13 deletions
|
@ -1,12 +0,0 @@
|
||||||
{
|
|
||||||
"configurations": {
|
|
||||||
"launch": {
|
|
||||||
"adapter": "CodeLLDB",
|
|
||||||
"configuration": {
|
|
||||||
"request": "launch",
|
|
||||||
"program": "${workspaceRoot}/target/debug/eww",
|
|
||||||
"args": ["open", "main_window"]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -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"
|
||||||
|
|
|
@ -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"]}
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue