Skip to content

Commit 36ec6b5

Browse files
klensyashvin021
authored andcommitted
Bump deps (#4857)
* dirs-sys v0.3.4 -> v0.3.6 to drop a lot of deps regex v1.3.1 -> v1.4.3 drops thread_local 0.3.6 bytecount v0.6.0 -> v0.6.2 replaces packed_simd with packed_simd_2 ignore v0.4.11 -> v0.4.17 drop crossbeam-channel v0.4.0 * itertools 8.0 -> 9.0 bump `ignore` version in Cargo.toml * cargo_metadata 0.8 -> 0.12 * env_logger 0.6 -> 0.8
1 parent 29d30f3 commit 36ec6b5

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,24 +34,24 @@ rustfmt-format-diff = []
3434
generic-simd = ["bytecount/generic-simd"]
3535

3636
[dependencies]
37-
itertools = "0.8"
37+
itertools = "0.9"
3838
toml = "0.5"
3939
serde = { version = "1.0", features = ["derive"] }
4040
serde_json = "1.0"
4141
unicode-segmentation = "1.0.0"
4242
regex = "1.0"
4343
term = "0.6"
4444
diff = "0.1"
45-
log = "0.4.14"
46-
env_logger = "0.6"
45+
log = "0.4"
46+
env_logger = "0.8"
4747
getopts = "0.2"
4848
derive-new = "0.5"
49-
cargo_metadata = "0.8"
49+
cargo_metadata = "0.12"
5050
bytecount = "0.6"
5151
unicode-width = "0.1.5"
5252
unicode_categories = "0.1.1"
5353
dirs = "2.0.1"
54-
ignore = "0.4.11"
54+
ignore = "0.4.17"
5555
annotate-snippets = { version = "0.8", features = ["color"] }
5656
structopt = "0.3"
5757
rustfmt-config_proc_macro = { version = "0.2", path = "config_proc_macro" }

src/cargo-fmt/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@ fn get_cargo_metadata(
528528
if let Some(manifest_path) = manifest_path {
529529
cmd.manifest_path(manifest_path);
530530
}
531-
cmd.other_options(&[String::from("--offline")]);
531+
cmd.other_options(vec![String::from("--offline")]);
532532

533533
match cmd.exec() {
534534
Ok(metadata) => Ok(metadata),

0 commit comments

Comments
 (0)