cargo upgrade

This commit is contained in:
Bryan Stitt 2023-05-13 15:00:24 -07:00
parent 2080739865
commit 685c1d039a
2 changed files with 9 additions and 9 deletions

14
Cargo.lock generated
View File

@ -2302,12 +2302,12 @@ dependencies = [
[[package]] [[package]]
name = "gethostname" name = "gethostname"
version = "0.4.2" version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "199523ba70af2b447640715e8c4bd2b5360313a71d2d69361ae4dd1dc31487dd" checksum = "0176e0459c2e4a1fe232f984bca6890e681076abb9934f6cea7c326f3fc47818"
dependencies = [ dependencies = [
"libc", "libc",
"windows", "windows-targets 0.48.0",
] ]
[[package]] [[package]]
@ -4317,9 +4317,9 @@ dependencies = [
[[package]] [[package]]
name = "rdkafka" name = "rdkafka"
version = "0.29.0" version = "0.30.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd7c5d6d17442bcb9f943aae96d67d98c6d36af60442dd5da62aaa7fcbb25c48" checksum = "97640b53443880ca65df40e9373a8193f9ad58b3f7419bc7206067f4a952500d"
dependencies = [ dependencies = [
"futures-channel", "futures-channel",
"futures-util", "futures-util",
@ -4335,9 +4335,9 @@ dependencies = [
[[package]] [[package]]
name = "rdkafka-sys" name = "rdkafka-sys"
version = "4.3.0+1.9.2" version = "4.4.0+1.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d222a401698c7f2010e3967353eae566d9934dcda49c29910da922414ab4e3f4" checksum = "87ac9d87c3aba1748e3112318459f2ac8bff80bfff7359e338e0463549590249"
dependencies = [ dependencies = [
"cmake", "cmake",
"libc", "libc",

View File

@ -46,7 +46,7 @@ fdlimit = "0.2.1"
flume = "0.10.14" flume = "0.10.14"
fstrings = "0.2" fstrings = "0.2"
futures = { version = "0.3.28", features = ["thread-pool"] } futures = { version = "0.3.28", features = ["thread-pool"] }
gethostname = "0.4.2" gethostname = "0.4.3"
glob = "0.3.1" glob = "0.3.1"
handlebars = "4.3.7" handlebars = "4.3.7"
hashbrown = { version = "0.13.2", features = ["serde"] } hashbrown = { version = "0.13.2", features = ["serde"] }
@ -71,7 +71,7 @@ parking_lot = { version = "0.12.1", features = ["arc_lock"] }
prettytable = "*" prettytable = "*"
proctitle = "0.1.1" proctitle = "0.1.1"
quick_cache = "0.3.0" quick_cache = "0.3.0"
rdkafka = { version = "0.29.0" } rdkafka = { version = "0.30.0" }
regex = "1.8.1" regex = "1.8.1"
reqwest = { version = "0.11.17", default-features = false, features = ["json", "tokio-rustls"] } reqwest = { version = "0.11.17", default-features = false, features = ["json", "tokio-rustls"] }
rmp-serde = "1.1.1" rmp-serde = "1.1.1"