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
3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ futures = { version = "0.3.31", default-features = fa
futures-channel = { version = "0.3.31", default-features = false }
futures-core = { version = "0.3.31", default-features = false }
futures-io = { version = "0.3.31", default-features = false }
futures-lite = { version = "2.6.1" }
futures-sink = { version = "0.3.31", default-features = false }
futures-util = { version = "0.3.31", default-features = false }
glob = { version = "0.3.3" }
Expand Down Expand Up @@ -249,6 +250,8 @@ smallvec = { version = "2.0.0-alpha.11", default-featu
smol_str = { version = "0.3.4" }
sort-package-json = { version = "0.0.12" }
specta = { version = "2.0.0-rc.22", default-features = false }
sqruff-lib = { version = "0.37.3" }
sqruff-lib-core = { version = "0.37.3" }
stacker = { version = "0.1.22", default-features = false }
supports-color = { version = "3.0.2", default-features = false }
supports-unicode = { version = "3.0.0", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion libs/@local/graph/api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ hash-graph-type-defs = { workspace = true }
hash-graph-validation = { workspace = true }
hashql-ast = { workspace = true }
hashql-diagnostics = { workspace = true, features = ["serde", "render"] }
hashql-eval = { workspace = true, features = ["graph"] }
hashql-eval = { workspace = true }
hashql-hir = { workspace = true }
hashql-syntax-jexpr = { workspace = true }
type-system = { workspace = true, features = ["utoipa"] }
Expand Down
1 change: 1 addition & 0 deletions libs/@local/hashql/ast/src/lowering/node_renumberer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ impl Visitor<'_> for NodeRenumberer {
}

impl Default for NodeRenumberer {
#[inline]
fn default() -> Self {
Self::new()
}
Expand Down
1 change: 1 addition & 0 deletions libs/@local/hashql/ast/src/lowering/sanitizer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,7 @@ impl<'heap> Visitor<'heap> for Sanitizer {
}

impl Default for Sanitizer {
#[inline]
fn default() -> Self {
Self::new()
}
Expand Down
2 changes: 1 addition & 1 deletion libs/@local/hashql/compiletest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ version.workspace = true
hashql-ast = { workspace = true, public = true }
hashql-core = { workspace = true, public = true }
hashql-diagnostics = { workspace = true, features = ["render"], public = true }
hashql-eval = { workspace = true, features = ["graph"], public = true }
hashql-eval = { workspace = true, public = true }
hashql-hir = { workspace = true, public = true }
hashql-mir = { workspace = true, public = true }
hashql-syntax-jexpr = { workspace = true, public = true }
Expand Down
127 changes: 0 additions & 127 deletions libs/@local/hashql/compiletest/src/suite/eval_graph_read_entity.rs

This file was deleted.

5 changes: 1 addition & 4 deletions libs/@local/hashql/compiletest/src/suite/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ mod ast_lowering_special_form_expander;
mod ast_lowering_type_definition_extractor;
mod ast_lowering_type_extractor;
pub(crate) mod common;
mod eval_graph_read_entity;
mod eval_postgres;
mod hir_lower_alias_replacement;
mod hir_lower_checking;
Expand Down Expand Up @@ -50,8 +49,7 @@ use self::{
ast_lowering_sanitizer::AstLoweringSanitizerSuite,
ast_lowering_special_form_expander::AstLoweringSpecialFormExpanderSuite,
ast_lowering_type_definition_extractor::AstLoweringTypeDefinitionExtractorSuite,
ast_lowering_type_extractor::AstLoweringTypeExtractorSuite,
eval_graph_read_entity::EvalGraphReadEntitySuite, eval_postgres::EvalPostgres,
ast_lowering_type_extractor::AstLoweringTypeExtractorSuite, eval_postgres::EvalPostgres,
hir_lower_alias_replacement::HirLowerAliasReplacementSuite,
hir_lower_checking::HirLowerTypeCheckingSuite, hir_lower_ctor::HirLowerCtorSuite,
hir_lower_graph_hoisting::HirLowerGraphHoistingSuite,
Expand Down Expand Up @@ -152,7 +150,6 @@ const SUITES: &[&dyn Suite] = &[
&AstLoweringSpecialFormExpanderSuite,
&AstLoweringTypeDefinitionExtractorSuite,
&AstLoweringTypeExtractorSuite,
&EvalGraphReadEntitySuite,
&EvalPostgres,
&HirLowerAliasReplacementSuite,
&HirLowerCtorSuite,
Expand Down
Loading
Loading