-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
38 lines (34 loc) · 1.14 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
[workspace.package]
version = "1.6.0"
[workspace]
members = [
"crates/cli",
"crates/configuration",
"crates/integration-tests",
"crates/mongodb-agent-common",
"crates/mongodb-connector",
"crates/mongodb-support",
"crates/ndc-query-plan",
"crates/ndc-test-helpers",
"crates/test-helpers",
]
resolver = "2"
# The tag or rev of ndc-models must match the locked tag or rev of the
# ndc-models dependency of ndc-sdk
[workspace.dependencies]
ndc-sdk = { git = "https://github.com/hasura/ndc-sdk-rs.git", rev = "643b96b8ee4c8b372b44433167ce2ac4de193332" }
ndc-models = { git = "http://github.com/hasura/ndc-spec.git", tag = "v0.2.0-rc.2" }
indexmap = { version = "2", features = [
"serde",
] } # should match the version that ndc-models uses
itertools = "^0.13.0"
mongodb = { version = "^3.1.0", features = ["tracing-unstable"] }
nonempty = "^0.11.0"
schemars = "^0.8.12"
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1.0", features = ["preserve_order", "raw_value"] }
ref-cast = "1.0.23"
# Set opt levels according to recommendations in insta documentation
[profile.dev.package]
insta.opt-level = 3
similar.opt-level = 3