Skip to content
Merged
Show file tree
Hide file tree
Changes from 16 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
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 .env
Original file line number Diff line number Diff line change
@@ -1 +1 @@
DATABASE_URL=postgresql://postgres:[email protected]:5432/postgres
DATABASE_URL=postgresql://postgres:[email protected]:54322/postgres
82 changes: 80 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ rust-version = "1.82.0"
anyhow = "1.0.92"
biome_deserialize = "0.6.0"
biome_deserialize_macros = "0.6.0"
biome_string_case = "0.5.8"
bpaf = { version = "0.9.15", features = ["derive"] }
crossbeam = "0.8.4"
enumflags2 = "0.7.10"
Expand Down Expand Up @@ -46,6 +47,7 @@ tree_sitter_sql = { path = "./lib/tree_sitter_sql", version = "0.0.0" }
unicode-width = "0.1.12"

# postgres specific crates
pg_analyse = { path = "./crates/pg_analyse", version = "0.0.0" }
pg_base_db = { path = "./crates/pg_base_db", version = "0.0.0" }
pg_cli = { path = "./crates/pg_cli", version = "0.0.0" }
pg_commands = { path = "./crates/pg_commands", version = "0.0.0" }
Expand All @@ -62,6 +64,7 @@ pg_inlay_hints = { path = "./crates/pg_inlay_hints", version = "0.0.0
pg_lexer = { path = "./crates/pg_lexer", version = "0.0.0" }
pg_lexer_codegen = { path = "./crates/pg_lexer_codegen", version = "0.0.0" }
pg_lint = { path = "./crates/pg_lint", version = "0.0.0" }
pg_linter = { path = "./crates/pg_linter", version = "0.0.0" }
pg_lsp_converters = { path = "./crates/pg_lsp_converters", version = "0.0.0" }
pg_lsp_new = { path = "./crates/pg_lsp_new", version = "0.0.0" }
pg_markup = { path = "./crates/pg_markup", version = "0.0.0" }
Expand Down
30 changes: 30 additions & 0 deletions crates/pg_analyse/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@

[package]
authors.workspace = true
categories.workspace = true
description = "<DESCRIPTION>"
edition.workspace = true
homepage.workspace = true
keywords.workspace = true
license.workspace = true
name = "pg_analyse"
repository.workspace = true
version = "0.0.0"


[dependencies]
pg_console.workspace = true
pg_diagnostics.workspace = true
pg_query_ext.workspace = true
pg_schema_cache.workspace = true
rustc-hash = { workspace = true }

biome_deserialize = { workspace = true, optional = true }
biome_deserialize_macros = { workspace = true, optional = true }
enumflags2.workspace = true
serde = { workspace = true, features = ["derive"], optional = true }
text-size.workspace = true
schemars = { workspace = true, optional = true }

[features]
serde = ["dep:serde", "dep:schemars", "dep:biome_deserialize", "dep:biome_deserialize_macros"]
Loading