Merge pull request 'fix(deps): update rust crate tokio-postgres to 0.7.7' (#58) from renovate/tokio-postgres-0.x into master

Reviewed-on: https://git.esd.cc/imlonghao/archlinuxcn-packages/pulls/58
This commit is contained in:
imlonghao 2022-08-22 02:03:28 +00:00
commit b1890a0608
2 changed files with 9 additions and 8 deletions

15
Cargo.lock generated
View file

@ -1454,18 +1454,18 @@ dependencies = [
[[package]] [[package]]
name = "phf" name = "phf"
version = "0.10.1" version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" checksum = "928c6535de93548188ef63bb7c4036bd415cd8f36ad25af44b9789b2ee72a48c"
dependencies = [ dependencies = [
"phf_shared", "phf_shared",
] ]
[[package]] [[package]]
name = "phf_shared" name = "phf_shared"
version = "0.10.0" version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" checksum = "e1fb5f6f826b772a8d4c0394209441e7d37cbbb967ae9c7e0e8134365c9ee676"
dependencies = [ dependencies = [
"siphasher", "siphasher",
] ]
@ -2090,15 +2090,16 @@ dependencies = [
[[package]] [[package]]
name = "tokio-postgres" name = "tokio-postgres"
version = "0.7.6" version = "0.7.7"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "19c88a47a23c5d2dc9ecd28fb38fba5fc7e5ddc1fe64488ec145076b0c71c8ae" checksum = "29a12c1b3e0704ae7dfc25562629798b29c72e6b1d0a681b6f29ab4ae5e7f7bf"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"byteorder", "byteorder",
"bytes", "bytes",
"fallible-iterator", "fallible-iterator",
"futures", "futures-channel",
"futures-util",
"log", "log",
"parking_lot 0.12.0", "parking_lot 0.12.0",
"percent-encoding", "percent-encoding",

View file

@ -20,5 +20,5 @@ postgres-types = { version = "0.2.4", features = ["derive"]}
sentry = "0.27.0" sentry = "0.27.0"
sentry-actix = "0.27.0" sentry-actix = "0.27.0"
serde = { version = "1.0.144", features = ["derive"] } serde = { version = "1.0.144", features = ["derive"] }
tokio-postgres = { version = "0.7.6", features = ["with-chrono-0_4"]} tokio-postgres = { version = "0.7.7", features = ["with-chrono-0_4"]}
yaml-rust = "0.4.5" yaml-rust = "0.4.5"