Skip to content

refactor: new workspace crate #147

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 43 commits into from
Dec 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
925a823
feat: new workspace crate
psteinroe Oct 28, 2024
68012b2
fix: imports
psteinroe Oct 28, 2024
ec49ba6
feat: add pg_markup and pg_console from biome
psteinroe Oct 28, 2024
5bf6a14
feat: add 70% of diagnostics crate and its deps
psteinroe Oct 30, 2024
25fe899
add diagnostics categories
psteinroe Nov 2, 2024
b3e2d8c
add configuration crate
psteinroe Nov 3, 2024
b8bfb1d
finish workspace config
psteinroe Nov 6, 2024
f67a430
workspace client
psteinroe Nov 6, 2024
6cf79d8
start with workspace server
psteinroe Nov 9, 2024
2410fce
start with lps and cli crate
psteinroe Nov 16, 2024
cee1f35
working through compiler errors
psteinroe Nov 19, 2024
125700f
more progress
psteinroe Nov 20, 2024
91182f2
its alive!
psteinroe Nov 23, 2024
26c0375
feat: bring back change handling (need to fix tests and make the code…
psteinroe Nov 26, 2024
e06c908
move change stuff to document
psteinroe Nov 26, 2024
e61daeb
adapt tests
psteinroe Nov 26, 2024
5bab0fb
feat: bring back tree sitter
psteinroe Nov 26, 2024
13253b0
safe before i rewrite this shit
psteinroe Nov 29, 2024
dc1745e
progress
psteinroe Nov 30, 2024
d22644f
rewrite change and add more tests
psteinroe Dec 6, 2024
544d972
fix it
psteinroe Dec 6, 2024
24a897d
bring back pg query
psteinroe Dec 6, 2024
8a0b09a
add db connection to workspace
psteinroe Dec 9, 2024
93afa4b
fix: async within sync
psteinroe Dec 10, 2024
565c97f
cleanup
psteinroe Dec 10, 2024
575c850
cleanup
psteinroe Dec 10, 2024
f14f54a
Merge branch 'refactor/pglsp' into new-workspace
psteinroe Dec 10, 2024
89b3031
chore: merge main
psteinroe Dec 10, 2024
64737cd
temporarily add old diagnostics to old workspace crate to fix ci
psteinroe Dec 10, 2024
3d682bb
add just and setup codegen cli
psteinroe Dec 10, 2024
5f20dd1
more just
psteinroe Dec 11, 2024
c5b6f6a
merge main
psteinroe Dec 11, 2024
14209ef
chore: clippy fix
psteinroe Dec 11, 2024
06da729
fix build
psteinroe Dec 11, 2024
99ec7e2
fix build
psteinroe Dec 11, 2024
e6ba7f4
fix build
psteinroe Dec 11, 2024
f9e9df7
fix build
psteinroe Dec 11, 2024
d16078c
fix test
psteinroe Dec 11, 2024
e74bb02
fix test
psteinroe Dec 11, 2024
0c94d66
fix test
psteinroe Dec 11, 2024
024ad63
fix test
psteinroe Dec 11, 2024
3a58104
fix test
psteinroe Dec 11, 2024
42b27cf
fix test
psteinroe Dec 11, 2024
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ jobs:

- name: 📦 Build
id: build
run: cargo build
run: RUSTFLAGS="-A dead_code" cargo build

- name: ⚡️ Check
id: check
run: cargo check
run: RUSTFLAGS="-A dead_code" cargo check

- name: 🦺 Test
id: test
run: cargo test
run: RUSTFLAGS="-A dead_code" cargo test
Loading
Loading