Skip to content
Merged
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
2 changes: 1 addition & 1 deletion libs/@local/graph/validation/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ mod tests {
data_type: &str,
data_types: impl IntoIterator<Item = &'static str> + Send,
components: ValidateEntityComponents,
) -> Result<PropertyValueWithMetadata, ValueValidationReport> {
) -> Result<PropertyValueWithMetadata, Box<ValueValidationReport>> {
let mut value = serde_json::from_value(value).expect("failed to parse value");
let mut provider = Provider::new(
[],
Expand Down
2 changes: 1 addition & 1 deletion libs/@local/hashql/core/src/id/bit_vec/finite.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ macro_rules! impl_trait {
$(impl_trait!(@impl $integral);)*
};
(@impl $integral:ty) => {
impl const FiniteBitSetIntegral for $integral {
const impl FiniteBitSetIntegral for $integral {
const EMPTY: Self = Self::MIN;
const FILLED: Self = Self::MAX;
const MAX_DOMAIN_SIZE: u32 = <$integral>::BITS;
Expand Down
2 changes: 1 addition & 1 deletion libs/@local/hashql/core/src/id/bit_vec/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1554,7 +1554,7 @@ const fn chunk_word_index_and_mask(elem: usize) -> (usize, Word) {
word_index_and_mask(chunk_elem)
}

fn clear_excess_bits_in_final_word(domain_size: usize, words: &mut [Word]) {
const fn clear_excess_bits_in_final_word(domain_size: usize, words: &mut [Word]) {
let num_bits_in_final_word = domain_size % WORD_BITS;
if num_bits_in_final_word > 0 {
let mask = (1 << num_bits_in_final_word) - 1;
Expand Down
6 changes: 3 additions & 3 deletions libs/@local/hashql/macros/src/id/enum.rs
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ pub(super) fn expand_enum(
output.extend(quote! {
#[automatically_derived]
#[expect(clippy::cast_possible_truncation, clippy::cast_lossless)]
impl #konst #krate::id::Id for #name {
#konst impl #krate::id::Id for #name {
const MIN: Self = Self::from_discriminant(0);
const MAX: Self = Self::from_discriminant(#max);

Expand Down Expand Up @@ -198,7 +198,7 @@ pub(super) fn expand_enum(
for int in [quote!(u32), quote!(u64), quote!(usize)] {
output.extend(quote! {
#[automatically_derived]
impl #konst ::core::convert::TryFrom<#int> for #name {
#konst impl ::core::convert::TryFrom<#int> for #name {
type Error = #krate::id::IdError;

#[inline]
Expand All @@ -220,7 +220,7 @@ pub(super) fn expand_enum(
// 6. HasId impl
output.extend(quote! {
#[automatically_derived]
impl #konst #krate::id::HasId for #name {
#konst impl #krate::id::HasId for #name {
type Id = Self;

#[inline]
Expand Down
2 changes: 1 addition & 1 deletion libs/@local/hashql/macros/src/id/struct.rs
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ pub(super) fn expand_struct(

#[automatically_derived]
#[expect(clippy::cast_possible_truncation, clippy::cast_lossless)]
impl #konst #krate::id::Id for #name {
#konst impl #krate::id::Id for #name {
const MIN: Self = Self::new(#min);
const MAX: Self = Self::new(#max_value);

Expand Down
2 changes: 1 addition & 1 deletion libs/@local/hashql/mir/src/interpret/value/int.rs
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ const impl From<bool> for Int {
macro_rules! impl_from_int {
($($ty:ty),*) => {
$(
impl const From<$ty> for Int {
const impl From<$ty> for Int {
#[inline]
fn from(value: $ty) -> Self {
Self::from_i128(i128::from(value))
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-06-08&color=blue)][rust-version]
[![rust-version](https://img.shields.io/static/v1?label=Rust&message=1.83.0/nightly-2026-06-22&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-06-08&color=blue)][rust-version]
[![rust-version](https://img.shields.io/static/v1?label=Rust&message=1.83.0/nightly-2026-06-22&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-06-08&color=blue)][rust-version]
//! [![rust-version](https://img.shields.io/static/v1?label=Rust&message=1.83.0/nightly-2026-06-22&color=blue)][rust-version]
//!
//! [crates.io]: https://crates.io/crates/error-stack
//! [libs.rs]: https://lib.rs/crates/error-stack
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-06-08"
channel = "nightly-2026-06-22"
components = ['rustfmt', 'clippy', 'llvm-tools-preview', 'miri', 'rust-src', 'rust-analyzer', 'rustc-codegen-cranelift-preview']
Loading