Skip to content

Commit

Permalink
Merge pull request #3 from chevdor/wk-rust-2021
Browse files Browse the repository at this point in the history
Rust 2021 + deps upgrades
  • Loading branch information
chevdor authored Nov 2, 2021
2 parents 5a4ad0f + befb7f1 commit b37d3a6
Show file tree
Hide file tree
Showing 4 changed files with 62 additions and 55 deletions.
102 changes: 52 additions & 50 deletions Cargo.lock

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

9 changes: 5 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
[package]
authors = ["chevdor <[email protected]>"]
edition = "2018"
edition = "2021"
name = "gh"
version = "0.1.0"
version = "0.2.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
clap = "3.0.0-beta.2"
env_logger = "0.8.3"
clap = "=3.0.0-beta.4"
clap_derive = "=3.0.0-beta.4"
env_logger = "0.9.0"
log = "0.4.14"
regex = "1.5.4"
webbrowser = "0.5.5"
Expand Down
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ _fmt:

# Run clippy
_clippy:
cargo clippy
cargo +nightly clippy --all-features --all-targets

# Run checks such as clippy, rustfmt, etc...
check: _clippy _fmt
4 changes: 4 additions & 0 deletions rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[toolchain]
channel = "stable"
components = [ "rustfmt", "clippy" ]
profile = "minimal"

0 comments on commit b37d3a6

Please sign in to comment.