Skip to content

Commit fa0c705

Browse files
psteinroejuleswritescode
andauthoredMar 20, 2025··
fix: various fixes across the board (#255)
* remaining renamings * Update server.rs Co-authored-by: Julian Domke <[email protected]> * fix: use tokio if available and async-std as fallback * chore: add test that actually calls the binary --------- Co-authored-by: Julian Domke <[email protected]>
1 parent afb43bc commit fa0c705

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+584
-254
lines changed
 

‎Cargo.lock

+246-22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎Cargo.toml

+11-10
Original file line numberDiff line numberDiff line change
@@ -39,16 +39,17 @@ serde = "1.0.195"
3939
serde_json = "1.0.114"
4040
similar = "2.6.0"
4141
smallvec = { version = "1.13.2", features = ["union", "const_new", "serde"] }
42-
sqlx = { version = "0.8.2", features = ["runtime-tokio", "postgres", "json"] }
43-
syn = "1.0.109"
44-
termcolor = "1.4.1"
45-
tokio = { version = "1.40.0", features = ["full"] }
46-
tower-lsp = "0.20.0"
47-
tracing = { version = "0.1.40", default-features = false, features = ["std"] }
48-
tracing-subscriber = "0.3.18"
49-
tree-sitter = "0.20.10"
50-
tree_sitter_sql = { path = "./lib/tree_sitter_sql", version = "0.0.0" }
51-
unicode-width = "0.1.12"
42+
# this will use tokio if available, otherwise async-std
43+
sqlx = { version = "0.8.2", features = ["runtime-tokio", "runtime-async-std", "postgres", "json"] }
44+
syn = "1.0.109"
45+
termcolor = "1.4.1"
46+
tokio = { version = "1.40.0", features = ["full"] }
47+
tower-lsp = "0.20.0"
48+
tracing = { version = "0.1.40", default-features = false, features = ["std"] }
49+
tracing-subscriber = "0.3.18"
50+
tree-sitter = "0.20.10"
51+
tree_sitter_sql = { path = "./lib/tree_sitter_sql", version = "0.0.0" }
52+
unicode-width = "0.1.12"
5253

5354
# postgres specific crates
5455
pgt_analyse = { path = "./crates/pgt_analyse", version = "0.0.0" }

0 commit comments

Comments
 (0)
Please sign in to comment.