Skip to content

Commit

Permalink
Disable structopt default features
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
tgonzalezorlandoarm committed Oct 17, 2023
1 parent 8444c96 commit c740228
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 26 deletions.
25 changes: 0 additions & 25 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ rust-version = "1.66.0"
[dependencies]
atty = "0.2.14"
parsec-client = "0.16.0"
structopt = "0.3.17"
structopt = { version = "0.3.17", default-features = false }
thiserror = "1.0.20"
env_logger = "0.10.0"
oid = { version = "0.2", features = ["serde_support"] }
Expand Down

0 comments on commit c740228

Please sign in to comment.