Skip to content

Commit cbe0ab7

Browse files
authored
move description to Cargo.toml (#2)
1 parent 532b9c4 commit cbe0ab7

File tree

3 files changed

+3
-20
lines changed

3 files changed

+3
-20
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[package]
22
authors = ["Brian Caswell <bcaswell@gmail.com>"]
33
name = "azure-pim-cli"
4+
description = "CLI to list and enable Azure Privileged Identity Management roles"
45
version = "0.0.1"
56
edition = "2021"
67
license = "MIT"

README.md

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Azure PIM CLI
22

3-
```
43
CLI to list and enable Azure Privileged Identity Management roles
54

5+
```
66
Usage: az-pim <COMMAND>
77
88
Commands:
@@ -14,9 +14,6 @@ Options:
1414
-h, --help
1515
Print help
1616
17-
-V, --version
18-
Print version
19-
2017
```
2118
## az-pim list
2219

@@ -29,9 +26,6 @@ Options:
2926
-h, --help
3027
Print help
3128
32-
-V, --version
33-
Print version
34-
3529
```
3630
## az-pim activate <ROLE> <SCOPE> <JUSTIFICATION>
3731

@@ -59,9 +53,6 @@ Options:
5953
-h, --help
6054
Print help
6155
62-
-V, --version
63-
Print version
64-
6556
```
6657
## az-pim activate-set <JUSTIFICATION>
6758

@@ -95,7 +86,4 @@ Options:
9586
-h, --help
9687
Print help (see a summary with '-h')
9788
98-
-V, --version
99-
Print version
100-
10189
```

src/bin/az-pim.rs

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,7 @@ use std::{
99
use tracing::{error, info};
1010

1111
#[derive(Parser)]
12-
#[command(
13-
author,
14-
version,
15-
propagate_version = true,
16-
disable_help_subcommand = true
17-
)]
18-
/// CLI to list and enable Azure Privileged Identity Management roles
12+
#[command(disable_help_subcommand = true)]
1913
struct Cmd {
2014
#[clap(subcommand)]
2115
commands: SubCommand,

0 commit comments

Comments
 (0)