Merge pull request #1003 from sfackler/dependabot/cargo/socket2-0.5

Update socket2 requirement from 0.4 to 0.5
This commit is contained in:
Steven Fackler 2023-03-27 18:26:30 -04:00 committed by GitHub
commit 39fa1ad39e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -55,7 +55,7 @@ jobs:
- run: docker compose up -d
- uses: sfackler/actions/rustup@master
with:
version: 1.63.0
version: 1.64.0
- run: echo "version=$(rustc --version)" >> $GITHUB_OUTPUT
id: rust-version
- uses: actions/cache@v3

View File

@ -55,8 +55,8 @@ pin-project-lite = "0.2"
phf = "0.11"
postgres-protocol = { version = "0.6.4", path = "../postgres-protocol" }
postgres-types = { version = "0.2.4", path = "../postgres-types" }
socket2 = { version = "0.4", features = ["all"] }
tokio = { version = "1.0", features = ["io-util"] }
socket2 = { version = "0.5", features = ["all"] }
tokio = { version = "1.27", features = ["io-util"] }
tokio-util = { version = "0.7", features = ["codec"] }
[dev-dependencies]