Skip to content

Commit

Permalink
merge: #11
Browse files Browse the repository at this point in the history
11: build(deps): upgrade `rand`, `clap`, & MSRV deps r=fnichol a=fnichol

* Upgrade `rand` to 0.8.4
* Pin `clap` to 3.0.0-beta.2 to prevent premature updating of minimum
  supported Rust version (MSRV)
* Bump MSRV to 1.46.0 due to `const_fn` in pulldown-cmark, depended on
  by version-sync which is a dev dependency

Closes: #6

Signed-off-by: Fletcher Nichol <[email protected]>

Co-authored-by: Fletcher Nichol <[email protected]>
  • Loading branch information
bors[bot] and fnichol authored Sep 12, 2021
2 parents 1b6c50b + 011e393 commit 5bb096a
Show file tree
Hide file tree
Showing 4 changed files with 71 additions and 78 deletions.
2 changes: 1 addition & 1 deletion .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ anchors:
#
env:
RUST_VERSION: stable
MIN_SUPPORTED_RUST_VERSION: 1.40.0 # Due to clap 3 beta.2 (mem::take)
MIN_SUPPORTED_RUST_VERSION: 1.46.0 # Due to pulldown-cmark (const_fn)

check_task:
name: check
Expand Down
134 changes: 64 additions & 70 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ default = ["application"]
application = ["clap"]

[dependencies]
clap = { version = "3.0.0-beta.2", optional = true }
rand = "0.7.3"
clap = { version = "=3.0.0-beta.2", optional = true }
rand = "0.8.4"

[dev-dependencies]
version-sync = "0.9.1"
Expand Down
Loading

0 comments on commit 5bb096a

Please sign in to comment.