prepare crates.io release

This commit is contained in:
crapStone 2022-07-16 02:34:51 +02:00
parent 8f16e59680
commit ba2844c7d1
No known key found for this signature in database
GPG key ID: 4CAA9E39EEDEB1F0
3 changed files with 17 additions and 11 deletions

18
Cargo.lock generated
View file

@ -89,15 +89,6 @@ dependencies = [
"hashbrown", "hashbrown",
] ]
[[package]]
name = "lamp"
version = "0.2.1"
dependencies = [
"clap",
"clap_complete",
"exitcode",
]
[[package]] [[package]]
name = "libc" name = "libc"
version = "0.2.126" version = "0.2.126"
@ -110,6 +101,15 @@ version = "6.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "21326818e99cfe6ce1e524c2a805c189a99b5ae555a35d19f9a284b427d86afa" checksum = "21326818e99cfe6ce1e524c2a805c189a99b5ae555a35d19f9a284b427d86afa"
[[package]]
name = "r_lamp"
version = "0.2.1"
dependencies = [
"clap",
"clap_complete",
"exitcode",
]
[[package]] [[package]]
name = "strsim" name = "strsim"
version = "0.10.0" version = "0.10.0"

View file

@ -4,9 +4,15 @@
# along with this program. If not, see <https://www.gnu.org/licenses/>. # along with this program. If not, see <https://www.gnu.org/licenses/>.
[package] [package]
name = "lamp" name = "r_lamp"
version = "0.2.1" version = "0.2.1"
authors = ["crapStone <crapstone01@gmail.com>"] authors = ["crapStone <crapstone01@gmail.com>"]
license = "GPL-3.0-or-later"
description = "A Linux backlight utility inspired by acpibacklight"
homepage = "https://codeberg.org/crapStone/lamp"
repository = "https://codeberg.org/crapStone/lamp"
readme = "README.md"
categories = ["command-line-utilities"]
edition = "2021" edition = "2021"
build = "build.rs" build = "build.rs"

View file

@ -13,7 +13,7 @@ use clap_complete::{generate_to, shells, Generator};
include!("src/cli.rs"); include!("src/cli.rs");
const OUTDIR: &str = "completions"; const OUTDIR: &str = "target/completions";
fn main() -> Result<(), Error> { fn main() -> Result<(), Error> {
let mut cmd = build_cli(); let mut cmd = build_cli();