-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
77 lines (72 loc) · 1.79 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
[workspace]
resolver = "2"
package.version = "0.1.1"
package.edition = "2021"
package.license = "Apache-2.0"
members = [
"crates/cli",
"crates/configuration",
"crates/connectors/ndc-bigquery",
"crates/query-engine/sql",
"crates/query-engine/translation",
"crates/query-engine/metadata",
"crates/query-engine/execution",
"crates/tests/tests-common"
]
[workspace.lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
# disable certain pedantic warnings
doc_markdown = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
wildcard_imports = "allow"
# unstable warnings; we might need to suppress them
redundant_clone = "warn"
# disable these for now, but we should probably fix them
similar_names = "allow"
too_many_lines = "allow"
[workspace.dependencies]
ndc-models = { git = "https://github.com/hasura/ndc-spec.git", tag = "v0.1.6" }
ndc-sdk = { git = "https://github.com/hasura/ndc-sdk-rs.git", tag = "v0.4.0" }
ndc-test = { git = "https://github.com/hasura/ndc-spec.git", tag = "v0.1.6" }
anyhow = "1"
async-trait = "0.1"
axum = "0.6"
axum-test-helper = "0.3"
build-data = "0.2"
bytes = "1"
clap = "4"
env_logger = "0.11"
hyper = "0.14"
indexmap = "2"
insta = "1"
jsonschema = "0.17"
multimap = "0.9"
nonempty = "0.10"
percent-encoding = "2"
prometheus = "0.13"
ref-cast = "1"
reqwest = { version = "0.11", default-features = false }
schemars = "0.8"
serde = "1"
serde_derive = "^1.0"
serde_json = "1"
serde_yaml = "0.9"
similar-asserts = "1"
smol_str = "0.1"
sqlformat = "0.2"
sqlx = "0.7"
tempfile = "3"
test-each = "0.2"
thiserror = "1"
tokio = "1"
tokio-postgres = "0.7"
tracing = "0.1"
url = "2"
uuid = "1"
enum-iterator = "1.4.1"
gcp-bigquery-client = "0.17.0"
yup-oauth2 = "8.3.0"