Skip to content

Commit b6b4381

Browse files
cargo: bump the minor group across 1 directory with 3 updates (#2459)
Bumps the minor group with 3 updates in the / directory: [tokio](https://github.com/tokio-rs/tokio), [zerocopy](https://github.com/google/zerocopy) and [scraper](https://github.com/causal-agent/scraper). --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Andrew Walbran <[email protected]>
1 parent f7d2ab5 commit b6b4381

File tree

6 files changed

+79
-51
lines changed

6 files changed

+79
-51
lines changed

Cargo.lock

Lines changed: 72 additions & 44 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mdbook-slide-evaluator/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ log = "0.4.22"
1717
pretty_env_logger = "0.5.0"
1818
serde = { version = "1.0.214", features = ["derive"] }
1919
strum = { version = "0.26.3", features = ["derive"] }
20-
tokio = { version = "1.40.0", features = ["full"] }
20+
tokio = { version = "1.41.0", features = ["full"] }
2121
tokio-util = "0.7.12"
2222
url = "2.5.2"

src/bare-metal/useful-crates/zerocopy-example/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ edition = "2021"
55
publish = false
66

77
[dependencies]
8-
zerocopy = { version = "0.7.35", features = ["derive"] }
8+
zerocopy = { version = "0.8.8", features = ["derive"] }

src/bare-metal/useful-crates/zerocopy-example/src/main.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
#![allow(dead_code)]
1616

1717
// ANCHOR: main
18-
use zerocopy::AsBytes;
18+
use zerocopy::{Immutable, IntoBytes};
1919

2020
#[repr(u32)]
21-
#[derive(AsBytes, Debug, Default)]
21+
#[derive(Debug, Default, Immutable, IntoBytes)]
2222
enum RequestType {
2323
#[default]
2424
In = 0,
@@ -27,7 +27,7 @@ enum RequestType {
2727
}
2828

2929
#[repr(C)]
30-
#[derive(AsBytes, Debug, Default)]
30+
#[derive(Debug, Default, Immutable, IntoBytes)]
3131
struct VirtioBlockRequest {
3232
request_type: RequestType,
3333
reserved: u32,

src/concurrency/async-exercises/chat-async/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ edition = "2021"
66
[dependencies]
77
futures-util = { version = "0.3.31", features = ["sink"] }
88
http = "1.1.0"
9-
tokio = { version = "1.40.0", features = ["full"] }
9+
tokio = { version = "1.41.0", features = ["full"] }
1010
tokio-websockets = { version = "0.10.1", features = ["client", "fastrand", "server", "sha1_smol"] }

src/concurrency/sync-exercises/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ path = "link-checker.rs"
1414

1515
[dependencies]
1616
reqwest = { version = "0.12.9", features = ["blocking"] }
17-
scraper = "0.20.0"
17+
scraper = "0.21.0"
1818
thiserror = "1.0.66"
1919

2020
[dev-dependencies]

0 commit comments

Comments
 (0)