Skip to content
This repository has been archived by the owner on Jul 22, 2023. It is now read-only.

Commit

Permalink
Update Rust crate tokio to 1.23.0 (#1687)
Browse files Browse the repository at this point in the history
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [tokio](https://tokio.rs) ([source](https://github.com/tokio-rs/tokio)) | dependencies | minor | `1.22.0` -> `1.23.0` |
| [tokio](https://tokio.rs) ([source](https://github.com/tokio-rs/tokio)) | dev-dependencies | minor | `1.22.0` -> `1.23.0` |

---

### Release Notes

<details>
<summary>tokio-rs/tokio</summary>

### [`v1.23.0`](https://github.com/tokio-rs/tokio/releases/tag/tokio-1.23.0): Tokio v1.23.0

[Compare Source](tokio-rs/tokio@tokio-1.22.0...tokio-1.23.0)

##### Fixed

-   net: fix Windows named pipe connect ([#&#8203;5208])
-   io: support vectored writes for `ChildStdin` ([#&#8203;5216])
-   io: fix `async fn ready()` false positive for OS-specific events ([#&#8203;5231])

##### Changed

-   runtime: `yield_now` defers task until after driver poll ([#&#8203;5223])
-   runtime: reduce amount of codegen needed per spawned task ([#&#8203;5213])
-   windows: replace `winapi` dependency with `windows-sys` ([#&#8203;5204])

[#&#8203;5208]: tokio-rs/tokio#5208

[#&#8203;5216]: tokio-rs/tokio#5216

[#&#8203;5213]: tokio-rs/tokio#5213

[#&#8203;5204]: tokio-rs/tokio#5204

[#&#8203;5223]: tokio-rs/tokio#5223

[#&#8203;5231]: tokio-rs/tokio#5231

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about these updates again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC43MC4wIiwidXBkYXRlZEluVmVyIjoiMzQuNzAuMCJ9-->

Co-authored-by: cabr2-bot <cabr2.help@gmail.com>
Reviewed-on: https://codeberg.org/Calciumdibromid/CaBr2/pulls/1687
Reviewed-by: crapStone <crapstone@noreply.codeberg.org>
Co-authored-by: Calciumdibromid Bot <cabr2_bot@noreply.codeberg.org>
Co-committed-by: Calciumdibromid Bot <cabr2_bot@noreply.codeberg.org>
  • Loading branch information
2 people authored and crapStone committed Dec 23, 2022
1 parent 0944188 commit 2b7040c
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion crates/config/Cargo.toml
Expand Up @@ -17,7 +17,7 @@ log = "0.4.17"
serde = { version = "1.0.151", features = ["derive"] }
serde_json = "1.0.91"
thiserror = "1.0.38"
tokio = { version = "1.22.0", features = ["fs", "io-util"] }
tokio = { version = "1.23.0", features = ["fs", "io-util"] }
toml = { version = "0.5.10", features = ["preserve_order"] }
types = { path = "../types/" }

Expand Down
4 changes: 2 additions & 2 deletions crates/load_save/Cargo.toml
Expand Up @@ -23,12 +23,12 @@ regex = { version = "1.7.0", optional = true }
serde = { version = "1.0.151", features = ["derive"] }
serde_json = { version = "1.0.91", optional = true }
thiserror = "1.0.38"
tokio = { version = "1.22.0", features = ["fs"], optional = true }
tokio = { version = "1.23.0", features = ["fs"], optional = true }
types = { path = "../types/", features = ["lock"] }
wkhtmltopdf = { version = "0.4.0", optional = true }

[dev-dependencies]
tokio = { version = "1.22.0", features = ["rt", "macros"] }
tokio = { version = "1.23.0", features = ["rt", "macros"] }

[features]
beryllium = ["chrono", "quick-xml", "regex"]
Expand Down
2 changes: 1 addition & 1 deletion crates/logger/Cargo.toml
Expand Up @@ -15,5 +15,5 @@ config = { path = "../config/" }
fern = "0.6.1"
log = "0.4.17"
serde = { version = "1.0.151", features = ["derive"], optional = true }
tokio = "1.22.0"
tokio = "1.23.0"
types = { path = "../types/" }
2 changes: 1 addition & 1 deletion crates/search/Cargo.toml
Expand Up @@ -25,7 +25,7 @@ serde = { version = "1.0.151", features = ["derive"] }
serde_json = "1.0.91"
structopt = { version = "0.3.26", optional = true }
thiserror = "1.0.38"
tokio = { version = "1.22.0", default-features = false, optional = true }
tokio = { version = "1.23.0", default-features = false, optional = true }
types = { path = "../types/", features = ["lock"] }

[features]
Expand Down
2 changes: 1 addition & 1 deletion crates/types/Cargo.toml
Expand Up @@ -14,7 +14,7 @@ cfg-if = { version = "1.0.0", optional = true }
chrono = { version = "0.4.23", features = ["serde"] }
log = "0.4.17"
serde = { version = "1.0.151", features = ["derive"] }
tokio = { version = "1.22.0", features = ["sync"], default-features = false, optional = true }
tokio = { version = "1.23.0", features = ["sync"], default-features = false, optional = true }

[features]
lock = ["cfg-if"]
Expand Down
6 changes: 3 additions & 3 deletions frontend/src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion frontend/src-tauri/Cargo.toml
Expand Up @@ -24,7 +24,7 @@ logger = { path = "../../crates/logger/" }
search = { path = "../../crates/search/" }
serde_json = "1.0.91"
tauri = { version = "1.2.3", features = ["api-all"] }
tokio = { version = "1.22.0", features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.23.0", features = ["macros", "rt-multi-thread"] }
types = { path = "../../crates/types" }

[features]
Expand Down
6 changes: 3 additions & 3 deletions webserver/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion webserver/Cargo.toml
Expand Up @@ -19,7 +19,7 @@ log = "0.4.17"
logger = { path = "../crates/logger/" }
search = { path = "../crates/search/" }
serde = { version = "1.0.151", features = ["derive"] }
tokio = { version = "1.22.0", features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.23.0", features = ["macros", "rt-multi-thread"] }
types = { path = "../crates/types/" }
uuid = { version = "1.2.2", features = ["serde", "v4"] }
warp = "0.3.3"
Expand Down

0 comments on commit 2b7040c

Please sign in to comment.