File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11[package ]
22name = " apply-user-defaults"
33version = " 0.1.2"
4- authors = [" Michael Sanders <michael.sanders@fastmail.com >" ]
4+ authors = [" Michael Sanders <crates@michaelsande.rs >" ]
55description = " A small utility to set macOS user defaults declaratively from a YAML file."
66repository = " https://github.com/zero-sh/apply-user-defaults"
77readme = " README.md"
Original file line number Diff line number Diff line change 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
1010pub 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" )
You can’t perform that action at this time.
0 commit comments