-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
39 lines (36 loc) · 1.17 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
authors = ["Brian Caswell <[email protected]>"]
description = "Unofficial CLI to list and enable Azure Privileged Identity Management (PIM) roles"
documentation = "https://docs.rs/azure-pim-cli"
edition = "2021"
homepage = "https://github.com/demoray/azure-pim-cli"
keywords = ["azure"]
license = "MIT"
name = "azure-pim-cli"
repository = "https://github.com/demoray/azure-pim-cli"
version = "0.8.0"
[dependencies]
anyhow = "1.0"
base64 = "0.22"
clap = { version = "4.5", features = ["derive"] }
clap_complete = "4.5"
derive_setters = "0.1"
home = "0.5"
humantime = "2.1"
itertools = "0.14"
parking_lot = "0.12"
ratatui = { version = "0.29", features = ["crossterm"] }
rayon = "1.10"
reqwest = { version = "0.12", features = ["blocking", "json"] }
retry = "2.0"
semver = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uuid = { version = "1.12", features = ["v7"] }
[dev-dependencies]
insta = { version = "1.42", features = ["json"] }
[target.'cfg(target_env = "musl")'.dependencies]
reqwest = { version = "0.12", features = ["native-tls-vendored"] }