Skip to content

Commit 58c0621

Browse files
committed
Update package info
1 parent 9ce5b7d commit 58c0621

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "apply-user-defaults"
33
version = "0.1.2"
4-
authors = ["Michael Sanders <michael.sanders@fastmail.com>"]
4+
authors = ["Michael Sanders <crates@michaelsande.rs>"]
55
description = "A small utility to set macOS user defaults declaratively from a YAML file."
66
repository = "https://github.com/zero-sh/apply-user-defaults"
77
readme = "README.md"

src/cli.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
// https://opensource.org/licenses/MIT>, at your option. This file may not be
66
// copied, modified, or distributed except according to those terms.
77

8-
use clap::{App, Arg};
8+
use clap::{App, Arg, crate_version, crate_authors};
99

1010
pub fn build_cli() -> App<'static, 'static> {
1111
App::new("apply-user-defaults")
12-
.version("0.1.2")
13-
.author("Michael Sanders <michael.sanders@fastmail.com>")
12+
.version(crate_version!())
13+
.author(crate_authors!())
1414
.about("Apply macOS user defaults in bulk from YAML file.")
1515
.arg(
1616
Arg::with_name("dry-run")

0 commit comments

Comments
 (0)