diff --git a/Cargo.lock b/Cargo.lock index 39227851e..643539950 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4560,9 +4560,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.25.0" +version = "1.26.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c8e00990ebabbe4c14c08aca901caed183ecd5c09562a12c824bb53d3c3fd3af" +checksum = "03201d01c3c27a29c8a5cee5b55a93ddae1ccf6f08f65365c2c918f8c1b76f64" dependencies = [ "autocfg", "bytes", @@ -4574,7 +4574,7 @@ dependencies = [ "signal-hook-registry", "socket2", "tokio-macros", - "windows-sys 0.42.0", + "windows-sys 0.45.0", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 9ecf55cb7..4f5c43d7f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -140,7 +140,7 @@ time = "=0.2.27" tikv-jemallocator = "0.5" -tokio = "^1.24.2" +tokio = "^1.26.0" tokio-openssl = "^0.6.3" tokio-util = "^0.7.7" diff --git a/proto/src/messages.rs b/proto/src/messages.rs index 1836275ec..be7637f5e 100644 --- a/proto/src/messages.rs +++ b/proto/src/messages.rs @@ -137,7 +137,7 @@ impl Default for AccountChangeMessage { /// msg.result=String::from("It was amazing"); /// assert_eq!(msg.status, MessageStatus::Success); /// -/// let expected_result = "success - cake_eating for user Krabby: It was amazing"; +/// let expected_result = "success - cake_eating for Krabby: It was amazing"; /// assert_eq!(format!("{}", msg), expected_result); /// /// msg.output_mode = ConsoleOutputMode::JSON;