From 33a2c0ff5694f75e9ddc7af8f65b223ab090a32f Mon Sep 17 00:00:00 2001 From: dustinblackman Date: Fri, 5 Jul 2024 08:41:26 -0400 Subject: [PATCH] chore: Update bin deps --- .cargo/config.toml | 1 - .gitignore | 1 + Cargo.toml | 15 +++++++-------- 3 files changed, 8 insertions(+), 9 deletions(-) diff --git a/.cargo/config.toml b/.cargo/config.toml index 842bb22..2422f3b 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,5 +1,4 @@ [alias] -binstall = ["bin", "cargo-binstall"] cmd = ["bin", "cargo-cmd"] deny = ["bin", "cargo-deny"] gha = ["bin", "cargo-gha"] diff --git a/.gitignore b/.gitignore index 17b2f97..857fd93 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ .gha/ *.profraw lcov.info +.idea/ diff --git a/Cargo.toml b/Cargo.toml index f387785..39f6cf1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -39,16 +39,15 @@ cargo-husky = { version = "1.5.0", default-features = false, features = ["user-h insta = { version = "1.31.0", features = ["yaml"] } [package.metadata.bin] -cargo-binstall = { version = "1.4.9", git = "https://github.com/dustinblackman/cargo-binstall", rev = "e51db613bfda636c253a0af43269275a4abee2c5" } -cargo-cmd = { version = "0.3.1" } -cargo-deny = { version = "0.13.5" } -cargo-gha = { version = "1.0.0" } +cargo-cmd = { version = "0.3.1", locked = true } +cargo-deny = { version = "0.13.5", locked = true } +cargo-gha = { version = "1.0.2", locked = true } cargo-insta = { version = "1.31.0", locked = true } -cargo-llvm-cov = { version = "0.5.25" } +cargo-llvm-cov = { version = "0.5.25", locked = true } cargo-nextest = { version = "0.9.57", locked = true } -cargo-watch = { version = "8.4.0" } -committed = { version = "1.0.20" } -git-cliff = { version = "1.3.1" } +cargo-watch = { version = "8.4.0", locked = true } +committed = { version = "1.0.20", locked = true } +git-cliff = { version = "1.3.1", locked = true } # Just added for testing dustinblackman-hello-world = { version = "0.2.1", git = "https://github.com/dustinblackman/rust-hello-world", bins = ["hello-world-first", "hello-world-second"] }