Skip to content

Commit 925a823

Browse files
committed
feat: new workspace crate
1 parent 0439f95 commit 925a823

File tree

5 files changed

+30
-0
lines changed

5 files changed

+30
-0
lines changed

Cargo.lock

Lines changed: 10 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
@@ -18,6 +18,7 @@ tracing = "0.1.40"
1818

1919
# postgres specific crates
2020
pg_lexer = { path = "./crates/pg_lexer", version = "0.0.0" }
21+
pg_workspace_new = { path = "./crates/pg_workspace_new", version = "0.0.0" }
2122
pg_fs = { path = "./crates/pg_fs", version = "0.0.0" }
2223
pg_diagnostics = { path = "./crates/pg_diagnostics", version = "0.0.0" }
2324
pg_lexer_codegen = { path = "./crates/pg_lexer_codegen", version = "0.0.0" }

crates/pg_workspace_new/Cargo.toml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
[package]
2+
name = "pg_workspace_new"
3+
version = "0.0.0"
4+
edition = "2021"
5+
6+
[dependencies]
7+
text-size = "1.1.1"
8+
dashmap = "5.5.3"
9+
sqlx = { version = "0.7.3", features = [ "runtime-async-std", "tls-rustls", "postgres", "json" ] }
10+
11+
pg_fs.workspace = true
12+
13+
[dev-dependencies]
14+
15+
[lib]
16+
doctest = false
17+
18+
[features]

crates/pg_workspace_new/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
mod workspace;

crates/pg_workspace_new/src/workspace.rs

Whitespace-only changes.

0 commit comments

Comments
 (0)