-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
57 lines (47 loc) · 1.62 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
[workspace]
resolver = "2"
members = ["dill-impl", "dill", "examples/axum"]
default-members = ["dill-impl", "dill"]
[workspace.package]
version = "0.10.0"
edition = "2021"
readme = "README.md"
homepage = "https://github.com/sergiimk/dill-rs"
repository = "https://github.com/sergiimk/dill-rs"
documentation = "https://docs.rs/dill"
categories = ["config", "development-tools"]
authors = ["Sergii Mikhtoniuk <[email protected]>"]
license = "MIT OR Apache-2.0"
keywords = ["di", "ioc", "dependency-injection", "dependency-inversion"]
include = ["benches/*.rs", "src/**/*.rs", "Cargo.toml"]
[workspace.lints.clippy]
# clippy::all (clippy::сorrectness, clippy::suspicious, clippy::style, clippy::complexity, clippy::perf)
new_without_default = "allow"
too_many_arguments = "allow"
module_inception = "allow"
# clippy::pedantic
pedantic = { level = "warn", priority = -1 }
default_trait_access = "allow"
fn_params_excessive_bools = "allow"
if_not_else = "allow"
ignored_unit_patterns = "allow"
items_after_statements = "allow"
match_wildcard_for_single_variants = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_raw_string_hashes = "allow"
return_self_not_must_use = "allow"
similar_names = "allow"
single_match_else = "allow"
struct_excessive_bools = "allow"
struct_field_names = "allow"
too_many_lines = "allow"
unused_self = "allow"
wildcard_imports = "allow"
# clippy::cargo
cargo = { level = "warn", priority = -1 }
multiple_crate_versions = { level = "allow", priority = 1 }
[workspace.dependencies]
dill-impl = { path = "dill-impl", version = "0.10.0" }