-
Notifications
You must be signed in to change notification settings - Fork 313
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (52 loc) · 1.55 KB
/
Cargo.toml
File metadata and controls
59 lines (52 loc) · 1.55 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[package]
name = "query-engine-node-api"
version = "0.1.0"
edition = "2021"
[lib]
doc = false
crate-type = ["cdylib"]
name = "query_engine"
[features]
default = ["driver-adapters"]
vendored-openssl = ["sql-connector/vendored-openssl"]
driver-adapters = [
"request-handlers/driver-adapters",
"sql-connector/driver-adapters",
]
[dependencies]
anyhow = "1"
async-trait.workspace = true
query-core = { path = "../core", features = ["metrics"] }
request-handlers = { path = "../request-handlers", features = ["all"] }
query-connector = { path = "../connectors/query-connector" }
query-engine-common = { path = "../../libs/query-engine-common" }
user-facing-errors = { path = "../../libs/user-facing-errors" }
psl = { workspace = true, features = ["all"] }
sql-connector = { path = "../connectors/sql-query-connector", package = "sql-query-connector", features = [
"all-native",
] }
query-structure = { path = "../query-structure" }
driver-adapters = { path = "../driver-adapters", features = [
"postgresql",
"sqlite",
"mysql",
] }
napi.workspace = true
napi-derive.workspace = true
thiserror = "1"
connection-string.workspace = true
url.workspace = true
serde_json.workspace = true
serde.workspace = true
tracing.workspace = true
tracing-subscriber = { version = "0.3" }
tracing-futures = "0.2"
tracing-opentelemetry = "0.17.3"
opentelemetry = { version = "0.17" }
quaint.workspace = true
tokio.workspace = true
futures = "0.3"
query-engine-metrics = { path = "../metrics" }
[build-dependencies]
napi-build = "1"
build-utils.path = "../../libs/build-utils"