Skip to content

Commit 735127f

Browse files
committed
Update package metadata
1 parent 21b6de7 commit 735127f

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

Cargo.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
[package]
22
name = "surface"
33
version = "0.1.0"
4-
authors = ["qzed <[email protected]>"]
4+
authors = ["Maximilian Luz <[email protected]>"]
5+
description = "Control various aspects of Microsoft Surface devices on Linux from the Command-Line"
6+
7+
repository = "https://github.com/qzed/surface-control"
8+
readme = "README.md"
9+
license = "MIT"
10+
511
edition = "2018"
612

713
[dependencies]

src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ fn app() -> clap::App<'static, 'static> {
4646
.setting(AppSettings::SubcommandRequiredElseHelp)
4747
.subcommand(dgpu_power);
4848

49-
App::new("surfacectl")
49+
App::new(clap::crate_name!())
5050
.version(clap::crate_version!())
51-
.author("Maximilian Luz <[email protected]>")
51+
.author(clap::crate_authors!("\n"))
5252
.about("Control various aspects of Microsoft Surface devices")
5353
.setting(AppSettings::SubcommandRequiredElseHelp)
5454
.global_settings(&settings)

0 commit comments

Comments
 (0)