-
Notifications
You must be signed in to change notification settings - Fork 113
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (26 loc) · 765 Bytes
/
Cargo.toml
File metadata and controls
35 lines (26 loc) · 765 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
authors.workspace = true
categories.workspace = true
description = "<DESCRIPTION>"
edition.workspace = true
homepage.workspace = true
keywords.workspace = true
license.workspace = true
name = "pg_completions"
repository.workspace = true
version = "0.0.0"
[dependencies]
async-std = "1.12.0"
text-size.workspace = true
pg_schema_cache.workspace = true
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
tree-sitter.workspace = true
tree_sitter_sql.workspace = true
sqlx.workspace = true
tokio = { version = "1.41.1", features = ["full"] }
[dev-dependencies]
pg_test_utils.workspace = true
[lib]
doctest = false
[features]