Skip to content

Commit c740228

Browse files
Disable structopt default features
The 'ansi_term' crate is currrently being flagged as unmaintained. The dependency tree that is bringing this crate is: ansi_term 0.12.1 └── clap 2.34.0 └── structopt 0.3.26 └── parsec-service 1.2.0 ansi_term is an optional dependency that we are bringing along. * Remove this and other optional dependencies by disabling the default-features for structopt. Signed-off-by: Tomás González <tomasagustin.gonzalezorlando@arm.com>
1 parent 8444c96 commit c740228

File tree

2 files changed

+1
-26
lines changed

2 files changed

+1
-26
lines changed

Cargo.lock

Lines changed: 0 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ rust-version = "1.66.0"
1515
[dependencies]
1616
atty = "0.2.14"
1717
parsec-client = "0.16.0"
18-
structopt = "0.3.17"
18+
structopt = { version = "0.3.17", default-features = false }
1919
thiserror = "1.0.20"
2020
env_logger = "0.10.0"
2121
oid = { version = "0.2", features = ["serde_support"] }

0 commit comments

Comments
 (0)