Skip to content

Commit ada2084

Browse files
committed
initial commit
1 parent 2281977 commit ada2084

File tree

17 files changed

+1630
-1
lines changed

17 files changed

+1630
-1
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
DATABASE_URL=postgresql://postgres:postgres@127.0.0.1:5432/postgres
1+
DATABASE_URL=postgresql://postgres:postgres@127.0.0.1:54322/postgres

Cargo.lock

Lines changed: 19 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ unicode-width = "0.1.12"
4747

4848
# postgres specific crates
4949
pg_base_db = { path = "./crates/pg_base_db", version = "0.0.0" }
50+
pg_analyse = { path = "./crates/pg_analyse", version = "0.0.0" }
5051
pg_cli = { path = "./crates/pg_cli", version = "0.0.0" }
5152
pg_commands = { path = "./crates/pg_commands", version = "0.0.0" }
5253
pg_completions = { path = "./crates/pg_completions", version = "0.0.0" }

crates/pg_analyse/Cargo.toml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
2+
[package]
3+
authors.workspace = true
4+
categories.workspace = true
5+
description = "<DESCRIPTION>"
6+
edition.workspace = true
7+
homepage.workspace = true
8+
keywords.workspace = true
9+
license.workspace = true
10+
name = "pg_analyse"
11+
repository.workspace = true
12+
version = "0.0.0"
13+
14+
15+
[dependencies]
16+
pg_schema_cache.workspace = true
17+
pg_diagnostics.workspace = true
18+
pg_console.workspace = true
19+
pg_query_ext.workspace = true
20+
rustc-hash = { workspace = true }
21+
22+
text-size.workspace = true
23+
enumflags2.workspace = true
24+
serde = { workspace = true, features = ["derive"], optional = true }
25+
biome_deserialize = { workspace = true, optional = true }
26+
biome_deserialize_macros = { workspace = true, optional = true }
27+
28+
[features]
29+
serde = ["dep:serde", "dep:biome_deserialize", "dep:biome_deserialize_macros"]
30+

0 commit comments

Comments
 (0)