Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -211,11 +211,11 @@ mod tests {
.enumerate()
.find(|(_, diff)| **diff == expected)
.unwrap_or_else(|| {
panic!("unexpected diff found: {expected:#?}\n\nactual: {diff:#?}",)
panic!("unexpected diff found: {expected:#?}\n\nactual: {diff:#?}")
});
diff.remove(idx);
}
assert!(diff.is_empty(), "missing diffs: {diff:#?}",);
assert!(diff.is_empty(), "missing diffs: {diff:#?}");
}

fn create_base_url(property: usize) -> BaseUrl {
Expand Down
2 changes: 1 addition & 1 deletion libs/@local/codegen/src/typescript.rs
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ impl<'a, 'c> TypeScriptGenerator<'a, 'c> {
| Type::NonEmptyList(_)
| Type::Map(_)
| Type::Nullable(_)) => {
unimplemented!("Tried to generate an interface from unsupported type: {ty:?}",)
unimplemented!("Tried to generate an interface from unsupported type: {ty:?}")
}
};

Expand Down
1 change: 0 additions & 1 deletion libs/@local/graph/api/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
return_type_notation,

// Library Features
assert_matches,
error_generic_member_access,
)]

Expand Down
5 changes: 0 additions & 5 deletions libs/@local/graph/authorization/tests/policies/main.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
#![feature(
// Library Features
assert_matches,
)]

extern crate alloc;

mod definitions;
Expand Down
4 changes: 0 additions & 4 deletions libs/@local/graph/postgres-store/tests/principals/main.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
#![feature(
// Library Features
assert_matches,
)]
#![expect(clippy::panic_in_result_fn)]

extern crate alloc;
Expand Down
2 changes: 1 addition & 1 deletion libs/@local/harpc/net/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
// Library Features
error_generic_member_access,
)]
#![cfg_attr(test, feature(assert_matches, async_fn_track_caller))]
#![cfg_attr(test, feature(async_fn_track_caller))]

extern crate alloc;

Expand Down
2 changes: 1 addition & 1 deletion libs/@local/harpc/tower/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// Library Features
error_generic_member_access,
)]
#![cfg_attr(test, feature(assert_matches, macro_metavar_expr))]
#![cfg_attr(test, feature(macro_metavar_expr))]

extern crate alloc;

Expand Down
2 changes: 1 addition & 1 deletion libs/@local/harpc/types/src/subsystem.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@ impl Display for SubsystemDescriptor {
fn fmt(&self, fmt: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
let &Self { id, version } = self;

write!(fmt, "{id}@{version}",)
write!(fmt, "{id}@{version}")
}
}
2 changes: 0 additions & 2 deletions libs/@local/hashql/ast/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,13 @@
#![feature(
// Language Features
coverage_attribute,
if_let_guard,
macro_metavar_expr_concat,

// Library Features
allocator_api,
formatting_options,
iter_intersperse,
)]
#![cfg_attr(test, feature(assert_matches))]

extern crate alloc;

Expand Down
2 changes: 0 additions & 2 deletions libs/@local/hashql/compiletest/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,8 @@
#![feature(
// Language Features
coverage_attribute,
if_let_guard,

// Library Features
assert_matches,
duration_millis_float,
exitcode_exit_method,
file_buffered,
Expand Down
2 changes: 0 additions & 2 deletions libs/@local/hashql/core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
arbitrary_self_types,
associated_type_defaults,
coverage_attribute,
if_let_guard,
impl_trait_in_assoc_type,
macro_metavar_expr,
macro_metavar_expr_concat,
Expand All @@ -18,7 +17,6 @@

// Library Features
allocator_api,
assert_matches,
binary_heap_into_iter_sorted,
clone_from_ref,
const_cmp,
Expand Down
2 changes: 1 addition & 1 deletion libs/@local/hashql/core/src/type/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1063,7 +1063,7 @@ pub(crate) fn type_parameter_not_found<K>(
)
.primary(Label::new(
param.span,
format!("Invalid reference to undefined type parameter ?{argument}",),
format!("Invalid reference to undefined type parameter ?{argument}"),
));

diagnostic.add_message(Message::help(
Expand Down
1 change: 0 additions & 1 deletion libs/@local/hashql/eval/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
// Language Features
coverage_attribute,
exhaustive_patterns,
if_let_guard,
never_type,

// Library Features
Expand Down
2 changes: 0 additions & 2 deletions libs/@local/hashql/mir/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,13 @@
associated_type_defaults,
coverage_attribute,
exhaustive_patterns,
if_let_guard,
impl_trait_in_assoc_type,
macro_metavar_expr_concat,
never_type,
const_trait_impl,

// Library Features
allocator_api,
assert_matches,
binary_heap_drain_sorted,
clone_from_ref,
const_type_name,
Expand Down
2 changes: 0 additions & 2 deletions libs/@local/hashql/syntax-jexpr/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,10 @@
#![feature(
// Language Features
decl_macro,
if_let_guard,

// Library Features
allocator_api,
ascii_char,
assert_matches,
box_into_boxed_slice,
new_range_api,
portable_simd,
Expand Down
2 changes: 1 addition & 1 deletion libs/error-stack/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

[![crates.io](https://img.shields.io/crates/v/error-stack)][crates.io]
[![libs.rs](https://img.shields.io/badge/libs.rs-error--stack-orange)][libs.rs]
[![rust-version](https://img.shields.io/static/v1?label=Rust&message=1.83.0/nightly-2026-02-09&color=blue)][rust-version]
[![rust-version](https://img.shields.io/static/v1?label=Rust&message=1.83.0/nightly-2026-02-28&color=blue)][rust-version]
[![documentation](https://img.shields.io/docsrs/error-stack)][documentation]
[![license](https://img.shields.io/crates/l/error-stack)][license]

Expand Down
2 changes: 1 addition & 1 deletion libs/error-stack/macros/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

[![crates.io](https://img.shields.io/crates/v/error-stack-macros)][crates.io]
[![libs.rs](https://img.shields.io/badge/libs.rs-error--stack--macros-orange)][libs.rs]
[![rust-version](https://img.shields.io/static/v1?label=Rust&message=1.83.0/nightly-2026-02-09&color=blue)][rust-version]
[![rust-version](https://img.shields.io/static/v1?label=Rust&message=1.83.0/nightly-2026-02-28&color=blue)][rust-version]
[![documentation](https://img.shields.io/docsrs/error-stack-macros)][documentation]
[![license](https://img.shields.io/crates/l/error-stack)][license]

Expand Down
2 changes: 1 addition & 1 deletion libs/error-stack/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
//!
//! [![crates.io](https://img.shields.io/crates/v/error-stack)][crates.io]
//! [![libs.rs](https://img.shields.io/badge/libs.rs-error--stack-orange)][libs.rs]
//! [![rust-version](https://img.shields.io/static/v1?label=Rust&message=1.83.0/nightly-2026-02-09&color=blue)][rust-version]
//! [![rust-version](https://img.shields.io/static/v1?label=Rust&message=1.83.0/nightly-2026-02-28&color=blue)][rust-version]
//!
//! [crates.io]: https://crates.io/crates/error-stack
//! [libs.rs]: https://lib.rs/crates/error-stack
Expand Down
6 changes: 2 additions & 4 deletions libs/error-stack/src/report.rs
Original file line number Diff line number Diff line change
Expand Up @@ -305,17 +305,15 @@ impl<C> Report<C> {

#[cfg(all(nightly, feature = "backtrace"))]
let backtrace = core::error::request_ref::<Backtrace>(&frame.as_error())
.filter(|backtrace| backtrace.status() == BacktraceStatus::Captured)
.is_none()
.is_none_or(|backtrace| backtrace.status() != BacktraceStatus::Captured)
.then(Backtrace::capture);

#[cfg(all(not(nightly), feature = "backtrace"))]
let backtrace = Some(Backtrace::capture());

#[cfg(all(nightly, feature = "spantrace"))]
let span_trace = core::error::request_ref::<SpanTrace>(&frame.as_error())
.filter(|span_trace| span_trace.status() == SpanTraceStatus::CAPTURED)
.is_none()
.is_none_or(|span_trace| span_trace.status() != SpanTraceStatus::CAPTURED)
.then(SpanTrace::capture);

#[cfg(all(not(nightly), feature = "spantrace"))]
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "nightly-2026-02-09"
channel = "nightly-2026-02-28"
components = ['rustfmt', 'clippy', 'llvm-tools-preview', 'miri', 'rust-src', 'rust-analyzer', 'rustc-codegen-cranelift-preview']
4 changes: 0 additions & 4 deletions tests/graph/integration/postgres/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
#![feature(
// Library Features
assert_matches,
)]
#![expect(
clippy::missing_panics_doc,
clippy::missing_errors_doc,
Expand Down
1 change: 0 additions & 1 deletion tests/graph/test-data/rust/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

// Library Features
unwrap_infallible,
assert_matches,
)]

extern crate alloc;
Expand Down
Loading