2023-12-19 12:04:02 +03:00
|
|
|
[workspace]
|
|
|
|
resolver = "2"
|
2024-03-06 20:14:24 +03:00
|
|
|
|
|
|
|
package.version = "0.1.0"
|
|
|
|
package.edition = "2021"
|
|
|
|
package.license = "Apache-2.0"
|
|
|
|
|
2023-12-19 12:04:02 +03:00
|
|
|
members = [
|
2024-05-01 12:04:24 +03:00
|
|
|
"crates/auth/*",
|
|
|
|
"crates/custom-connector",
|
|
|
|
"crates/engine",
|
2024-05-17 17:41:32 +03:00
|
|
|
"crates/execute",
|
2024-05-01 12:04:24 +03:00
|
|
|
"crates/lang-graphql",
|
2024-05-02 15:28:27 +03:00
|
|
|
"crates/metadata-resolve",
|
2024-05-01 12:04:24 +03:00
|
|
|
"crates/metadata-schema-generator",
|
|
|
|
"crates/open-dds",
|
2024-05-28 12:50:21 +03:00
|
|
|
"crates/query-usage-analytics",
|
2024-05-08 15:04:39 +03:00
|
|
|
"crates/schema",
|
2024-05-01 12:04:24 +03:00
|
|
|
"crates/utils/*",
|
2023-12-19 12:04:02 +03:00
|
|
|
]
|
|
|
|
|
2024-04-08 13:13:26 +03:00
|
|
|
[workspace.lints.clippy]
|
|
|
|
all = { level = "warn", priority = -1 }
|
|
|
|
pedantic = { level = "warn", priority = -1 }
|
|
|
|
# disable certain pedantic warnings
|
|
|
|
doc_markdown = "allow"
|
2024-06-11 18:32:43 +03:00
|
|
|
implicit_hasher = "allow"
|
2024-04-08 13:13:26 +03:00
|
|
|
missing_errors_doc = "allow"
|
|
|
|
missing_panics_doc = "allow"
|
|
|
|
module_name_repetitions = "allow"
|
|
|
|
must_use_candidate = "allow"
|
2024-06-11 18:32:43 +03:00
|
|
|
return_self_not_must_use = "allow"
|
2024-06-04 11:42:01 +03:00
|
|
|
struct_field_names = "allow"
|
2024-04-08 13:13:26 +03:00
|
|
|
wildcard_imports = "allow"
|
|
|
|
# disable these for now, but we should probably fix them
|
|
|
|
result_large_err = "allow"
|
|
|
|
similar_names = "allow"
|
|
|
|
too_many_arguments = "allow"
|
|
|
|
too_many_lines = "allow"
|
|
|
|
unnecessary_box_returns = "allow"
|
|
|
|
unnecessary_wraps = "allow"
|
|
|
|
unreadable_literal = "allow"
|
|
|
|
unused_async = "allow"
|
|
|
|
used_underscore_binding = "allow"
|
2024-05-16 12:04:07 +03:00
|
|
|
|
|
|
|
[workspace.lints.rustdoc]
|
|
|
|
private_intra_doc_links = "allow"
|