mirror of
https://codeberg.org/Codeberg/pages-server.git
synced 2025-01-19 08:57:55 +00:00
prepare crates.io release
This commit is contained in:
parent
8f16e59680
commit
ba2844c7d1
3 changed files with 17 additions and 11 deletions
18
Cargo.lock
generated
18
Cargo.lock
generated
|
@ -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"
|
||||||
|
|
|
@ -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"
|
||||||
|
|
2
build.rs
2
build.rs
|
@ -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();
|
||||||
|
|
Loading…
Reference in a new issue