-
Notifications
You must be signed in to change notification settings - Fork 256
/
Copy pathCargo.toml
248 lines (231 loc) Β· 7.41 KB
/
Cargo.toml
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
[workspace]
resolver = "2"
members = [
"schema-engine/cli",
"schema-engine/commands",
"schema-engine/core",
"schema-engine/connectors/*",
"schema-engine/datamodel-renderer",
"schema-engine/json-rpc-api",
"schema-engine/mongodb-schema-describer",
"schema-engine/sql-migration-tests",
"schema-engine/sql-introspection-tests",
"schema-engine/schema-engine-wasm",
"schema-engine/sql-schema-describer",
"query-engine/connectors/*",
"query-engine/connector-test-kit-rs/qe-setup",
"query-engine/connector-test-kit-rs/query-engine-tests",
"query-engine/connector-test-kit-rs/query-test-macros",
"query-engine/connector-test-kit-rs/query-tests-setup",
"query-engine/core",
"query-engine/core-tests",
"query-engine/black-box-tests",
"query-engine/dmmf",
"query-engine/query-structure",
"query-engine/query-engine",
"query-engine/query-engine-node-api",
"query-engine/query-engine-wasm",
"query-engine/query-engine-c-abi",
"query-engine/request-handlers",
"query-engine/schema",
"query-engine/query-builders/*",
"query-compiler/query-compiler",
"query-compiler/query-compiler-playground",
"query-compiler/query-compiler-wasm",
"query-compiler/query-engine-tests-todo",
"libs/query-template",
"libs/*",
"prisma-fmt",
"prisma-schema-wasm",
"psl/*",
"quaint",
]
[workspace.lints.rust.unexpected_cfgs]
level = "warn"
check-cfg = ['cfg(wasm_bindgen_unstable_test_coverage)', 'cfg(debug_assert)']
[workspace.dependencies]
ahash = "0.8"
anyhow = "1"
async-trait = "0.1"
barrel = { git = "https://github.com/prisma/barrel.git", branch = "mssql-support" }
base64 = "0.22"
bigdecimal = "0.3"
bitflags = "2"
bit-vec = "0.6"
bson = "2"
bytes = "1"
byteorder = { version = "1", default-features = false }
cfg-if = "1"
chrono = "0.4"
colored = "3"
concat-idents = "1"
connection-string = "0.2"
convert_case = "0.6"
crossbeam-channel = "0.5"
cuid = { git = "https://github.com/prisma/cuid-rust", branch = "v1.3.3-wasm32-unknown-unknown" }
derive_more = "0.99"
either = "1"
enumflags2 = "0.7"
env_logger = "0.11"
futures = "0.3"
getrandom = "0.2"
graphql-parser = { git = "https://github.com/prisma/graphql-parser" }
heck = "0.4"
hex = "0.4"
hyper = "0.14"
indoc = "2"
indexmap = "2"
itertools = "0.13"
jsonrpc-core = "17"
log = "0.4"
lru = "0.7"
lru-cache = "0.1"
lsp-types = "0.95"
metrics = "0.23.0"
metrics-util = "0.17.0"
metrics-exporter-prometheus = { version = "0.15.3", default-features = false }
mobc = "0.8"
mongodb = { git = "https://github.com/prisma/mongo-rust-driver.git", branch = "RUST-1994/happy-eyeballs", features = ["zstd-compression", "zlib-compression", "snappy-compression" ]}
mysql_async = { git = "https://github.com/prisma/mysql_async", branch = "vendored-openssl" }
names = { version = "0.11", default-features = false }
nanoid = "0.4"
napi = { version = "2", default-features = false, features = [
"napi9",
"tokio_rt",
"serde-json",
] }
napi-derive = "2"
native-tls = "0.2"
nom = "7"
num_cpus = "1"
parking_lot = "0.12"
parse-hyperlinks = "0.23"
paste = "1"
percent-encoding = "2"
pest = "2"
pest_derive = "2"
petgraph = "0.4"
pin-project = "1"
postgres-native-tls = { git = "https://github.com/prisma/rust-postgres", branch = "pgbouncer-mode" }
postgres-types = { git = "https://github.com/prisma/rust-postgres", branch = "pgbouncer-mode" }
pretty = "0.12"
rustc-hash = "1"
rand = "0.8"
regex = "1"
reqwest = "0.11"
rusqlite = "0.32"
sha2 = "0.10"
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", features = [
"float_roundtrip",
"preserve_order",
"raw_value",
] }
serde_repr = "0.1"
serde-wasm-bindgen = "0.6"
strip-ansi-escapes = "0.1"
structopt = "0.3"
sqlformat = "0.2"
sqlparser = "0.32"
sqlx-core = "0.8"
sqlx-sqlite = "0.8"
tempfile = "3"
tiberius = { version = "0.12", default-features = false }
tokio = { version = "1", features = ["sync"] }
tokio-postgres = { git = "https://github.com/prisma/rust-postgres", branch = "pgbouncer-mode" }
tokio-tungstenite = "0.26"
tokio-util = "0.7"
toml = "0.5"
tracing = "0.1"
tracing-core = "0.1"
tracing-error = "0.2"
tracing-subscriber = "0.3"
tracing-futures = "0.2"
tsify-next = { version = "0.5", default-features = false, features = ["js"] }
thiserror = "2"
url = "2"
ulid = "1"
uuid = { version = "1", features = ["v4", "v7", "js"] }
versions = "6"
js-sys = "0.3"
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
wasm-logger = "0.2"
# build dependencies
cbindgen = "0.24"
cfg_aliases = "0.2"
darling = "0.20"
napi-build = "1"
proc-macro2 = "1"
quote = "1"
syn = "2"
# dev dependencies
codspeed-criterion-compat = "1"
dissimilar = "1"
expect-test = "1"
flate2 = "1"
insta = "1"
pretty_assertions = "1"
similar = "2"
tracing-test = "0.2"
wasm-bindgen-test = "0.3"
wasm-rs-dbg = { version = "0.1", default-features = false, features = [
"console-error",
] }
# workspace dependencies
quaint = { path = "./quaint", default-features = false }
prisma-fmt.path = "./prisma-fmt"
build-utils.path = "./libs/build-utils"
crosstarget-utils.path = "./libs/crosstarget-utils"
panic-utils.path = "./libs/panic-utils"
prisma-metrics.path = "./libs/metrics"
prisma-value.path = "./libs/prisma-value"
telemetry.path = "./libs/telemetry"
user-facing-errors.path = "./libs/user-facing-errors"
user-facing-error-macros.path = "./libs/user-facing-error-macros"
mongodb-client.path = "./libs/mongodb-client"
test-setup.path = "./libs/test-setup"
test-macros.path = "./libs/test-macros"
query-engine-common.path = "./libs/query-engine-common"
driver-adapters.path = "./libs/driver-adapters"
sql-ddl.path = "./libs/sql-ddl"
query-template.path = "libs/query-template"
psl.path = "./psl/psl"
psl-core.path = "./psl/psl-core"
diagnostics.path = "./psl/diagnostics"
schema-ast.path = "./psl/schema-ast"
parser-database.path = "./psl/parser-database"
query-engine.path = "./query-engine/query-engine"
query-core.path = "./query-engine/core"
schema.path = "./query-engine/schema"
query-structure.path = "./query-engine/query-structure"
query-connector.path = "./query-engine/connectors/query-connector"
query-builder.path = "./query-engine/query-builders/query-builder"
sql-query-builder.path = "./query-engine/query-builders/sql-query-builder"
dmmf.path = "./query-engine/dmmf"
request-handlers = { path = "./query-engine/request-handlers", default-features = false }
sql-query-connector = { path = "./query-engine/connectors/sql-query-connector", default-features = false }
mongodb-query-connector = { path = "./query-engine/connectors/mongodb-query-connector", default-features = false }
schema-core.path = "./schema-engine/core"
datamodel-renderer.path = "./schema-engine/datamodel-renderer"
schema-connector.path = "./schema-engine/connectors/schema-connector"
sql-schema-connector.path = "./schema-engine/connectors/sql-schema-connector"
mongodb-schema-connector.path = "./schema-engine/connectors/mongodb-schema-connector"
sql-schema-describer.path = "./schema-engine/sql-schema-describer"
mongodb-schema-describer.path = "./schema-engine/mongodb-schema-describer"
query-compiler = { path = "./query-compiler/query-compiler", default-features = false }
[profile.dev.package.backtrace]
opt-level = 3
[profile.release.package.query-engine-node-api]
strip = "symbols"
[profile.release.package.query-engine]
strip = "symbols"
[profile.release.package.query-engine-c-abi]
strip = "symbols"
[profile.release]
lto = "fat"
codegen-units = 1
opt-level = 's' # Optimize for size.
[profile.profiling]
inherits = "release"
debug = true