From 0241c01630187ce3817ee1964f858ebc7b85d10a Mon Sep 17 00:00:00 2001 From: Michael Suo Date: Sat, 16 Apr 2022 19:30:40 -0700 Subject: [PATCH] build: run cargo upgrade --- Cargo.toml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 18bc3e3..b77b86c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,24 +7,24 @@ description = "A lint running tool and framework." license = "BSD-3-Clause" [dependencies] -clap = { version = "3.1.8", features = ["derive"] } -anyhow = "1.0" -glob = "0.3" -tempfile = "3.2" -serde = { version = "1.0.126", features = ["derive"] } -serde_json = "1.0" -textwrap = {version = "0.14", features = ["terminal_size"]} -similar = {version = "2.1.0", features = ["inline"]} -console = "0.15" -toml = "0.5.8" -log = "0.4.0" +clap = { version = "3.1.9", features = ["derive"] } +anyhow = "1.0.56" +glob = "0.3.0" +tempfile = "3.3.0" +serde = { version = "1.0.136", features = ["derive"] } +serde_json = "1.0.79" +textwrap = { version = "0.15.0", features = ["terminal_size"] } +similar = { version = "2.1.0", features = ["inline"] } +console = "0.15.0" +toml = "0.5.9" +log = "0.4.16" env_logger = "0.9.0" indicatif = "0.16.2" -regex = "1.5" +regex = "1.5.5" itertools = "0.10.3" -directories = "4.0" +directories = "4.0.1" blake3 = "1.3.1" [dev-dependencies] -assert_cmd = "2.0" -insta = {version = "1.8.0", features = ["redactions"]} +assert_cmd = "2.0.4" +insta = { version = "1.14.0", features = ["redactions"] }