mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 09:22:43 +03:00
117c11d18f
This shrinks the Docker image size by half. I have also normalized the two Dockerfiles so they share a cache for longer. V3_GIT_ORIGIN_REV_ID: f976725b09ad2c8022a912b15cdcde55ce5a9486
57 lines
1.5 KiB
TOML
57 lines
1.5 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
|
|
package.version = "0.1.0"
|
|
package.edition = "2021"
|
|
package.license = "Apache-2.0"
|
|
|
|
members = [
|
|
"crates/*"
|
|
]
|
|
|
|
[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"
|
|
# disable these for now, but we should probably fix them
|
|
cast_precision_loss = "allow"
|
|
default_trait_access = "allow"
|
|
explicit_into_iter_loop = "allow"
|
|
explicit_iter_loop = "allow"
|
|
from_iter_instead_of_collect = "allow"
|
|
if_not_else = "allow"
|
|
ignored_unit_patterns = "allow"
|
|
implicit_clone = "allow"
|
|
implicit_hasher = "allow"
|
|
inconsistent_struct_constructor = "allow"
|
|
inefficient_to_string = "allow"
|
|
inline_always = "allow"
|
|
manual_is_variant_and = "allow"
|
|
manual_let_else = "allow"
|
|
manual_string_new = "allow"
|
|
map_unwrap_or = "allow"
|
|
match_same_arms = "allow"
|
|
match_wildcard_for_single_variants = "allow"
|
|
redundant_else = "allow"
|
|
result_large_err = "allow"
|
|
return_self_not_must_use = "allow"
|
|
semicolon_if_nothing_returned = "allow"
|
|
similar_names = "allow"
|
|
single_match_else = "allow"
|
|
struct_field_names = "allow"
|
|
too_many_arguments = "allow"
|
|
too_many_lines = "allow"
|
|
uninlined_format_args = "allow"
|
|
unnecessary_box_returns = "allow"
|
|
unnecessary_wraps = "allow"
|
|
unnested_or_patterns = "allow"
|
|
unreadable_literal = "allow"
|
|
unused_async = "allow"
|
|
used_underscore_binding = "allow"
|