Skip to content

Commit

Permalink
build(deps): Bump clap from 2.34.0 to 3.2.23 (#1)
Browse files Browse the repository at this point in the history
* build(deps): Bump clap from 2.34.0 to 3.2.23

Bumps [clap](https://github.com/clap-rs/clap) from 2.34.0 to 3.2.23.
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/v3.2.23/CHANGELOG.md)
- [Commits](clap-rs/clap@v2.34.0...v3.2.23)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* fix: Drop lifetime op

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: dvogt23 <divogt@live.de>
  • Loading branch information
dependabot[bot] and dvogt23 authored Nov 7, 2022
1 parent a28a206 commit 889caaf
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 52 deletions.
55 changes: 5 additions & 50 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 @@ -11,7 +11,7 @@ repository = "https://github.com/dvogt23/mdbook-yml-header"
description = "mdBook preprocessor for removing yml header"

[dependencies]
clap = "2.*"
clap = "3.*"
lazy_static = "1.*"
mdbook = "0.4.*"
regex = "1.*"
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use mdbook::{
use regex::Regex;
use std::{io, process};

pub fn make_app() -> App<'static, 'static> {
pub fn make_app() -> App<'static> {
App::new("footnote-preprocessor")
.about("An mdbook preprocessor which converts expands footnote markers")
.subcommand(
Expand Down

0 comments on commit 889caaf

Please sign in to comment.