From a665ea6d2d55ebfdbb69d2cb27c42e0747bbfaf8 Mon Sep 17 00:00:00 2001 From: Devin Pohl Date: Mon, 13 Mar 2023 14:39:38 -0600 Subject: [PATCH] Misc dependency updates --- makefile | 1 + src/build/CargoSource.toml | 2 +- src/config/Cargo.toml | 6 +++--- src/headers/Cargo.toml | 2 +- src/man/Cargo.toml | 2 +- src/stest/Cargo.toml | 2 +- 6 files changed, 8 insertions(+), 7 deletions(-) diff --git a/makefile b/makefile index b183ed9..79b805d 100644 --- a/makefile +++ b/makefile @@ -71,6 +71,7 @@ clean: scaffold rm -f vgcore* massif* src/build/Cargo.toml rm -rf target rm -rf dmenu-* # distribution files + rm -f src/Cargo.lock version: @echo -n "${VERSION}" diff --git a/src/build/CargoSource.toml b/src/build/CargoSource.toml index 0689592..517e19c 100644 --- a/src/build/CargoSource.toml +++ b/src/build/CargoSource.toml @@ -14,7 +14,7 @@ name = "dmenu" path = "../dmenu/main.rs" [dependencies] -clap = { version = "2.33.1", features = ["yaml"]} +clap = { version = "2.33.3", features = ["yaml"]} clipboard = "0.5" itertools = "0.9" lazy_static = "1.4.0" diff --git a/src/config/Cargo.toml b/src/config/Cargo.toml index bfea029..013d8e8 100644 --- a/src/config/Cargo.toml +++ b/src/config/Cargo.toml @@ -14,8 +14,8 @@ path = "src/list_plugins.rs" [dependencies] glob = "0.3.0" -itertools = "0.9.0" +itertools = "0.10.5" man_dmenu = { path = "../man" } -prettytable-rs = "0.8.0" +prettytable-rs = "0.10.0" termcolor = "1.1" -yaml-rust = "^0.3" \ No newline at end of file +yaml-rust = "0.4.5" \ No newline at end of file diff --git a/src/headers/Cargo.toml b/src/headers/Cargo.toml index 781e5a0..46bce5d 100644 --- a/src/headers/Cargo.toml +++ b/src/headers/Cargo.toml @@ -8,4 +8,4 @@ edition = "2018" termcolor = "1.1" [build-dependencies] -bindgen = "0.53.2" \ No newline at end of file +bindgen = "0.64.0" \ No newline at end of file diff --git a/src/man/Cargo.toml b/src/man/Cargo.toml index 390ca72..daf6c29 100644 --- a/src/man/Cargo.toml +++ b/src/man/Cargo.toml @@ -5,4 +5,4 @@ authors = ["Shizcow "] edition = "2018" [dependencies] -itertools = "0.9.0" +itertools = "0.10.5" diff --git a/src/stest/Cargo.toml b/src/stest/Cargo.toml index ebacc69..e17c0c4 100644 --- a/src/stest/Cargo.toml +++ b/src/stest/Cargo.toml @@ -4,4 +4,4 @@ version = "0.0.0" edition = "2021" [dependencies] -clap = { version = "4.0.32", features = ["derive"] } +clap = { version = "4.1.8", features = ["derive"] }