4 Commits

Author SHA1 Message Date
d2ebe98753 Update all dependencies
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing
2023-01-14 10:26:20 +00:00
a2849226ce chore(release) with args 2023-01-12 07:32:05 +01:00
a6c26a9213 chore(release) with bug fixes 2023-01-12 07:29:49 +01:00
5ea2ff445a fix tests 2023-01-12 07:28:29 +01:00
4 changed files with 7 additions and 7 deletions

6
Cargo.lock generated
View File

@@ -43,9 +43,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "clap"
version = "4.0.32"
version = "4.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a7db700bc935f9e43e88d00b0850dae18a63773cfbec6d8e070fccf7fef89a39"
checksum = "4ec7a4128863c188deefe750ac1d1dfe66c236909f845af04beed823638dc1b2"
dependencies = [
"bitflags",
"clap_lex",
@@ -737,7 +737,7 @@ dependencies = [
[[package]]
name = "toolkit"
version = "0.1.10"
version = "0.1.14"
dependencies = [
"clap",
"eyre",

View File

@@ -1,7 +1,7 @@
[package]
name = "toolkit"
description = "Toolkit is an opinionated toolkit complementing a personal development workflow. Many of the commands are quite verbose, and well suited for adding to your shell toolbelt"
version = "0.1.10"
version = "0.1.14"
edition = "2021"
license-file = "LICENSE"
authors = ["Kasper J. Hermansen contact@kjuulh.io"]
@@ -17,7 +17,7 @@ members = [
]
[workspace.dependencies]
clap = { version = "4.0.32", features = ["cargo"] }
clap = { version = "4.1.1", features = ["cargo"] }
eyre = "0.6.8"
dirs = "4.0.0"
walkdir = "2.3.2"

View File

@@ -20,4 +20,4 @@ base64 = "0.21.0"
thiserror = "1.0.38"
[dev-dependencies]
mockall = "0.11.2"
mockall = "0.11.3"

View File

@@ -235,7 +235,7 @@ mod tests {
backend.expect_present_prs().times(1).returning(|_| Ok(()));
let review = Review::new(std::sync::Arc::new(backend));
let res = review.run(None, None);
let res = review.run(None, &None);
assert_err::<ReviewErrors, _>(res)
}