Skip to content

Commit 11d34ec

Browse files
authored
H-5505: Bump transitive Cargo dependencies and Rust toolchain (#7908)
1 parent 8432874 commit 11d34ec

File tree

13 files changed

+105
-146
lines changed

13 files changed

+105
-146
lines changed

Cargo.lock

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

apps/hash-graph/src/subcommand/server.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -326,10 +326,6 @@ pub async fn server(args: ServerArgs) -> Result<(), Report<GraphError>> {
326326
query_logger: query_logger.map(QueryLogger::new),
327327
};
328328

329-
#[expect(
330-
clippy::if_then_some_else_none,
331-
reason = "False positive, this is in an async context"
332-
)]
333329
let rpc_server_task_tracker = if args.rpc_enabled {
334330
tracing::info!("Starting RPC server...");
335331

libs/@blockprotocol/type-system/rust/src/ontology/property_type/schema/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -280,6 +280,7 @@ impl From<&VersionedUrl> for &PropertyTypeReference {
280280
///
281281
/// The `PropertyValues` type is used in the `one_of` field of [`PropertyType`]s to define
282282
/// the set of acceptable value structures for a property.
283+
#[expect(clippy::use_self, reason = "Tsify does not support `Self`")]
283284
pub enum PropertyValues {
284285
/// A reference to a data type.
285286
///

libs/@local/graph/postgres-store/src/store/postgres/knowledge/entity/mod.rs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -782,10 +782,6 @@ where
782782
};
783783

784784
Ok(QueryEntitiesResponse {
785-
#[expect(
786-
clippy::if_then_some_else_none,
787-
reason = "False positive, use of `await`"
788-
)]
789785
closed_multi_entity_types: if params.include_entity_types.is_some() {
790786
Some(
791787
self.get_closed_multi_entity_types(
@@ -1591,10 +1587,6 @@ where
15911587
}
15921588

15931589
Ok(QueryEntitySubgraphResponse {
1594-
#[expect(
1595-
clippy::if_then_some_else_none,
1596-
reason = "False positive, use of `await`"
1597-
)]
15981590
closed_multi_entity_types: if request.include_entity_types.is_some() {
15991591
Some(
16001592
self.get_closed_multi_entity_types(

libs/@local/graph/store/src/lib.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@
77
impl_trait_in_assoc_type,
88
never_type,
99
)]
10-
#![expect(
11-
clippy::self_named_module_files,
12-
reason = "False positive because the modules is named as the crate directory."
13-
)]
1410

1511
extern crate alloc;
1612

libs/@local/harpc/wire-protocol/src/protocol.rs

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
1-
#![cfg_attr(
2-
test,
3-
expect(
4-
clippy::min_ident_chars,
5-
clippy::explicit_deref_methods,
6-
reason = "Generated code"
7-
)
8-
)]
1+
#![cfg_attr(test, expect(clippy::min_ident_chars, reason = "Generated code"))]
92

103
use core::fmt::Display;
114

libs/@local/harpc/wire-protocol/src/request/flags.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
#![cfg_attr(
2-
test,
3-
expect(clippy::explicit_deref_methods, reason = "Generated code")
4-
)]
5-
61
use bytes::{Buf, BufMut};
72
use enumflags2::BitFlags;
83
use error_stack::Report;

libs/@local/harpc/wire-protocol/src/response/flags.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
#![cfg_attr(
2-
test,
3-
expect(clippy::explicit_deref_methods, reason = "Generated code")
4-
)]
5-
61
use bytes::{Buf, BufMut};
72
use enumflags2::BitFlags;
83
use error_stack::Report;

libs/error-stack/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
[![crates.io](https://img.shields.io/crates/v/error-stack)][crates.io]
99
[![libs.rs](https://img.shields.io/badge/libs.rs-error--stack-orange)][libs.rs]
10-
[![rust-version](https://img.shields.io/static/v1?label=Rust&message=1.83.0/nightly-2025-10-06&color=blue)][rust-version]
10+
[![rust-version](https://img.shields.io/static/v1?label=Rust&message=1.83.0/nightly-2025-10-21&color=blue)][rust-version]
1111
[![documentation](https://img.shields.io/docsrs/error-stack)][documentation]
1212
[![license](https://img.shields.io/crates/l/error-stack)][license]
1313

libs/error-stack/macros/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
[![crates.io](https://img.shields.io/crates/v/error-stack-macros)][crates.io]
88
[![libs.rs](https://img.shields.io/badge/libs.rs-error--stack--macros-orange)][libs.rs]
9-
[![rust-version](https://img.shields.io/static/v1?label=Rust&message=1.83.0/nightly-2025-10-06&color=blue)][rust-version]
9+
[![rust-version](https://img.shields.io/static/v1?label=Rust&message=1.83.0/nightly-2025-10-21&color=blue)][rust-version]
1010
[![documentation](https://img.shields.io/docsrs/error-stack-macros)][documentation]
1111
[![license](https://img.shields.io/crates/l/error-stack)][license]
1212

0 commit comments

Comments
 (0)