Skip to content

Commit dbc3c7d

Browse files
fixed conflicts
1 parent 25d7d31 commit dbc3c7d

File tree

5 files changed

+4
-5
lines changed

5 files changed

+4
-5
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/pgt_hover/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ version = "0.0.0"
1313

1414
[dependencies]
1515
humansize = { version = "2.1.3" }
16-
pgt_query_ext.workspace = true
16+
pgt_query.workspace = true
1717
pgt_schema_cache.workspace = true
1818
pgt_text_size.workspace = true
1919
pgt_treesitter.workspace = true

crates/pgt_hover/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pub struct OnHoverParams<'a> {
1010
pub position: TextSize,
1111
pub schema_cache: &'a SchemaCache,
1212
pub stmt_sql: &'a str,
13-
pub ast: Option<&'a pgt_query_ext::NodeEnum>,
13+
pub ast: Option<&'a pgt_query::NodeEnum>,
1414
pub ts_tree: &'a tree_sitter::Tree,
1515
}
1616

crates/pgt_treesitter/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ repository.workspace = true
1111
version = "0.0.0"
1212

1313
[lib]
14-
proc-macro = true
1514
doctest = false
1615

1716
[dependencies]

crates/pgt_workspace/src/workspace/server/document.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ impl<'a> StatementMapper<'a> for WithCSTandASTMapper {
279279
StatementId,
280280
TextRange,
281281
Arc<tree_sitter::Tree>,
282-
Option<pgt_query_ext::NodeEnum>,
282+
Option<pgt_query::NodeEnum>,
283283
);
284284

285285
fn map(&self, parser: &'a Document, id: StatementId, range: TextRange) -> Self::Output {

0 commit comments

Comments
 (0)