Skip to content

Commit

Permalink
Update to Rust 1.73.0 (#809)
Browse files Browse the repository at this point in the history
  • Loading branch information
XAMPPRocky authored Oct 9, 2023
1 parent 6e98b81 commit 5fbdf05
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
# limitations under the License.

[toolchain]
channel = "1.72.0"
channel = "1.73.0"
components = ["rustfmt", "clippy"]
2 changes: 1 addition & 1 deletion src/endpoint.rs
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ impl Ord for Endpoint {

impl PartialOrd for Endpoint {
fn partial_cmp(&self, other: &Self) -> Option<std::cmp::Ordering> {
self.address.partial_cmp(&other.address)
Some(self.cmp(other))
}
}

Expand Down

0 comments on commit 5fbdf05

Please sign in to comment.