Move to NATS #68
Annotations
68 warnings
fields `issuer`, `audience`, `expires_at`, `not_before`, and `issued_at` are never read:
src/iam.rs#L15
warning: fields `issuer`, `audience`, `expires_at`, `not_before`, and `issued_at` are never read
--> src/iam.rs:15:9
|
13 | pub struct Claims {
| ------ fields in this struct
14 | #[serde(rename = "iss")]
15 | pub issuer: String,
| ^^^^^^
...
19 | pub audience: Vec<String>,
| ^^^^^^^^
20 | #[serde(rename = "exp")]
21 | pub expires_at: i64,
| ^^^^^^^^^^
22 | #[serde(rename = "nbf")]
23 | pub not_before: i64,
| ^^^^^^^^^^
24 | #[serde(rename = "iat")]
25 | pub issued_at: i64,
| ^^^^^^^^^
|
= note: `Claims` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis
= note: `#[warn(dead_code)]` on by default
|
fields `issuer`, `audience`, `expires_at`, `not_before`, and `issued_at` are never read:
src/iam.rs#L15
warning: fields `issuer`, `audience`, `expires_at`, `not_before`, and `issued_at` are never read
--> src/iam.rs:15:9
|
13 | pub struct Claims {
| ------ fields in this struct
14 | #[serde(rename = "iss")]
15 | pub issuer: String,
| ^^^^^^
...
19 | pub audience: Vec<String>,
| ^^^^^^^^
20 | #[serde(rename = "exp")]
21 | pub expires_at: i64,
| ^^^^^^^^^^
22 | #[serde(rename = "nbf")]
23 | pub not_before: i64,
| ^^^^^^^^^^
24 | #[serde(rename = "iat")]
25 | pub issued_at: i64,
| ^^^^^^^^^
|
= note: `Claims` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis
= note: `#[warn(dead_code)]` on by default
|
lint group `all` has the same priority (0) as a lint:
Cargo.toml#L26
warning: lint group `all` has the same priority (0) as a lint
--> Cargo.toml:26:1
|
26 | all = "warn"
| ^^^ ------ has an implicit priority of 0
27 | dbg_macro = "warn"
| --------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `all` to a lower priority
|
26 | all = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `rust_2018_idioms` has the same priority (0) as a lint:
Cargo.toml#L20
warning: lint group `rust_2018_idioms` has the same priority (0) as a lint
--> Cargo.toml:20:1
|
20 | rust_2018_idioms = "warn"
| ^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
...
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `rust_2018_idioms` to a lower priority
|
20 | rust_2018_idioms = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `nonstandard_style` has the same priority (0) as a lint:
Cargo.toml#L22
warning: lint group `nonstandard_style` has the same priority (0) as a lint
--> Cargo.toml:22:1
|
22 | nonstandard_style = "warn"
| ^^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `nonstandard_style` to a lower priority
|
22 | nonstandard_style = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `future_incompatible` has the same priority (0) as a lint:
Cargo.toml#L21
warning: lint group `future_incompatible` has the same priority (0) as a lint
--> Cargo.toml:21:1
|
21 | future_incompatible = "warn"
| ^^^^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
22 | nonstandard_style = "warn"
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
= note: `-W clippy::lint-groups-priority` implied by `-W clippy::all`
= help: to override `-W clippy::all` add `#[allow(clippy::lint_groups_priority)]`
help: to have lints override the group set `future_incompatible` to a lower priority
|
21 | future_incompatible = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `all` has the same priority (0) as a lint:
Cargo.toml#L26
warning: lint group `all` has the same priority (0) as a lint
--> Cargo.toml:26:1
|
26 | all = "warn"
| ^^^ ------ has an implicit priority of 0
27 | dbg_macro = "warn"
| --------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `all` to a lower priority
|
26 | all = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `rust_2018_idioms` has the same priority (0) as a lint:
Cargo.toml#L20
warning: lint group `rust_2018_idioms` has the same priority (0) as a lint
--> Cargo.toml:20:1
|
20 | rust_2018_idioms = "warn"
| ^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
...
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `rust_2018_idioms` to a lower priority
|
20 | rust_2018_idioms = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `nonstandard_style` has the same priority (0) as a lint:
Cargo.toml#L22
warning: lint group `nonstandard_style` has the same priority (0) as a lint
--> Cargo.toml:22:1
|
22 | nonstandard_style = "warn"
| ^^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `nonstandard_style` to a lower priority
|
22 | nonstandard_style = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `future_incompatible` has the same priority (0) as a lint:
Cargo.toml#L21
warning: lint group `future_incompatible` has the same priority (0) as a lint
--> Cargo.toml:21:1
|
21 | future_incompatible = "warn"
| ^^^^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
22 | nonstandard_style = "warn"
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
= note: `-W clippy::lint-groups-priority` implied by `-W clippy::all`
= help: to override `-W clippy::all` add `#[allow(clippy::lint_groups_priority)]`
help: to have lints override the group set `future_incompatible` to a lower priority
|
21 | future_incompatible = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `all` has the same priority (0) as a lint:
Cargo.toml#L26
warning: lint group `all` has the same priority (0) as a lint
--> Cargo.toml:26:1
|
26 | all = "warn"
| ^^^ ------ has an implicit priority of 0
27 | dbg_macro = "warn"
| --------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `all` to a lower priority
|
26 | all = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `rust_2018_idioms` has the same priority (0) as a lint:
Cargo.toml#L20
warning: lint group `rust_2018_idioms` has the same priority (0) as a lint
--> Cargo.toml:20:1
|
20 | rust_2018_idioms = "warn"
| ^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
...
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `rust_2018_idioms` to a lower priority
|
20 | rust_2018_idioms = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `nonstandard_style` has the same priority (0) as a lint:
Cargo.toml#L22
warning: lint group `nonstandard_style` has the same priority (0) as a lint
--> Cargo.toml:22:1
|
22 | nonstandard_style = "warn"
| ^^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `nonstandard_style` to a lower priority
|
22 | nonstandard_style = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `future_incompatible` has the same priority (0) as a lint:
Cargo.toml#L21
warning: lint group `future_incompatible` has the same priority (0) as a lint
--> Cargo.toml:21:1
|
21 | future_incompatible = "warn"
| ^^^^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
22 | nonstandard_style = "warn"
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
= note: `-W clippy::lint-groups-priority` implied by `-W clippy::all`
= help: to override `-W clippy::all` add `#[allow(clippy::lint_groups_priority)]`
help: to have lints override the group set `future_incompatible` to a lower priority
|
21 | future_incompatible = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `all` has the same priority (0) as a lint:
Cargo.toml#L26
warning: lint group `all` has the same priority (0) as a lint
--> Cargo.toml:26:1
|
26 | all = "warn"
| ^^^ ------ has an implicit priority of 0
27 | dbg_macro = "warn"
| --------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `all` to a lower priority
|
26 | all = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `rust_2018_idioms` has the same priority (0) as a lint:
Cargo.toml#L20
warning: lint group `rust_2018_idioms` has the same priority (0) as a lint
--> Cargo.toml:20:1
|
20 | rust_2018_idioms = "warn"
| ^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
...
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `rust_2018_idioms` to a lower priority
|
20 | rust_2018_idioms = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `nonstandard_style` has the same priority (0) as a lint:
Cargo.toml#L22
warning: lint group `nonstandard_style` has the same priority (0) as a lint
--> Cargo.toml:22:1
|
22 | nonstandard_style = "warn"
| ^^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `nonstandard_style` to a lower priority
|
22 | nonstandard_style = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `future_incompatible` has the same priority (0) as a lint:
Cargo.toml#L21
warning: lint group `future_incompatible` has the same priority (0) as a lint
--> Cargo.toml:21:1
|
21 | future_incompatible = "warn"
| ^^^^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
22 | nonstandard_style = "warn"
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
= note: `-W clippy::lint-groups-priority` implied by `-W clippy::all`
= help: to override `-W clippy::all` add `#[allow(clippy::lint_groups_priority)]`
help: to have lints override the group set `future_incompatible` to a lower priority
|
21 | future_incompatible = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `all` has the same priority (0) as a lint:
Cargo.toml#L26
warning: lint group `all` has the same priority (0) as a lint
--> Cargo.toml:26:1
|
26 | all = "warn"
| ^^^ ------ has an implicit priority of 0
27 | dbg_macro = "warn"
| --------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `all` to a lower priority
|
26 | all = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `rust_2018_idioms` has the same priority (0) as a lint:
Cargo.toml#L20
warning: lint group `rust_2018_idioms` has the same priority (0) as a lint
--> Cargo.toml:20:1
|
20 | rust_2018_idioms = "warn"
| ^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
...
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `rust_2018_idioms` to a lower priority
|
20 | rust_2018_idioms = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `nonstandard_style` has the same priority (0) as a lint:
Cargo.toml#L22
warning: lint group `nonstandard_style` has the same priority (0) as a lint
--> Cargo.toml:22:1
|
22 | nonstandard_style = "warn"
| ^^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `nonstandard_style` to a lower priority
|
22 | nonstandard_style = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `future_incompatible` has the same priority (0) as a lint:
Cargo.toml#L21
warning: lint group `future_incompatible` has the same priority (0) as a lint
--> Cargo.toml:21:1
|
21 | future_incompatible = "warn"
| ^^^^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
22 | nonstandard_style = "warn"
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
= note: `-W clippy::lint-groups-priority` implied by `-W clippy::all`
= help: to override `-W clippy::all` add `#[allow(clippy::lint_groups_priority)]`
help: to have lints override the group set `future_incompatible` to a lower priority
|
21 | future_incompatible = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `all` has the same priority (0) as a lint:
Cargo.toml#L26
warning: lint group `all` has the same priority (0) as a lint
--> Cargo.toml:26:1
|
26 | all = "warn"
| ^^^ ------ has an implicit priority of 0
27 | dbg_macro = "warn"
| --------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `all` to a lower priority
|
26 | all = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `rust_2018_idioms` has the same priority (0) as a lint:
Cargo.toml#L20
warning: lint group `rust_2018_idioms` has the same priority (0) as a lint
--> Cargo.toml:20:1
|
20 | rust_2018_idioms = "warn"
| ^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
...
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `rust_2018_idioms` to a lower priority
|
20 | rust_2018_idioms = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `nonstandard_style` has the same priority (0) as a lint:
Cargo.toml#L22
warning: lint group `nonstandard_style` has the same priority (0) as a lint
--> Cargo.toml:22:1
|
22 | nonstandard_style = "warn"
| ^^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `nonstandard_style` to a lower priority
|
22 | nonstandard_style = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `future_incompatible` has the same priority (0) as a lint:
Cargo.toml#L21
warning: lint group `future_incompatible` has the same priority (0) as a lint
--> Cargo.toml:21:1
|
21 | future_incompatible = "warn"
| ^^^^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
22 | nonstandard_style = "warn"
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
= note: `-W clippy::lint-groups-priority` implied by `-W clippy::all`
= help: to override `-W clippy::all` add `#[allow(clippy::lint_groups_priority)]`
help: to have lints override the group set `future_incompatible` to a lower priority
|
21 | future_incompatible = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `all` has the same priority (0) as a lint:
Cargo.toml#L26
warning: lint group `all` has the same priority (0) as a lint
--> Cargo.toml:26:1
|
26 | all = "warn"
| ^^^ ------ has an implicit priority of 0
27 | dbg_macro = "warn"
| --------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `all` to a lower priority
|
26 | all = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `rust_2018_idioms` has the same priority (0) as a lint:
Cargo.toml#L20
warning: lint group `rust_2018_idioms` has the same priority (0) as a lint
--> Cargo.toml:20:1
|
20 | rust_2018_idioms = "warn"
| ^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
...
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `rust_2018_idioms` to a lower priority
|
20 | rust_2018_idioms = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `nonstandard_style` has the same priority (0) as a lint:
Cargo.toml#L22
warning: lint group `nonstandard_style` has the same priority (0) as a lint
--> Cargo.toml:22:1
|
22 | nonstandard_style = "warn"
| ^^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `nonstandard_style` to a lower priority
|
22 | nonstandard_style = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `future_incompatible` has the same priority (0) as a lint:
Cargo.toml#L21
warning: lint group `future_incompatible` has the same priority (0) as a lint
--> Cargo.toml:21:1
|
21 | future_incompatible = "warn"
| ^^^^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
22 | nonstandard_style = "warn"
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
= note: `-W clippy::lint-groups-priority` implied by `-W clippy::all`
= help: to override `-W clippy::all` add `#[allow(clippy::lint_groups_priority)]`
help: to have lints override the group set `future_incompatible` to a lower priority
|
21 | future_incompatible = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `all` has the same priority (0) as a lint:
Cargo.toml#L26
warning: lint group `all` has the same priority (0) as a lint
--> Cargo.toml:26:1
|
26 | all = "warn"
| ^^^ ------ has an implicit priority of 0
27 | dbg_macro = "warn"
| --------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `all` to a lower priority
|
26 | all = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `rust_2018_idioms` has the same priority (0) as a lint:
Cargo.toml#L20
warning: lint group `rust_2018_idioms` has the same priority (0) as a lint
--> Cargo.toml:20:1
|
20 | rust_2018_idioms = "warn"
| ^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
...
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `rust_2018_idioms` to a lower priority
|
20 | rust_2018_idioms = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `nonstandard_style` has the same priority (0) as a lint:
Cargo.toml#L22
warning: lint group `nonstandard_style` has the same priority (0) as a lint
--> Cargo.toml:22:1
|
22 | nonstandard_style = "warn"
| ^^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `nonstandard_style` to a lower priority
|
22 | nonstandard_style = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `future_incompatible` has the same priority (0) as a lint:
Cargo.toml#L21
warning: lint group `future_incompatible` has the same priority (0) as a lint
--> Cargo.toml:21:1
|
21 | future_incompatible = "warn"
| ^^^^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
22 | nonstandard_style = "warn"
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
= note: `-W clippy::lint-groups-priority` implied by `-W clippy::all`
= help: to override `-W clippy::all` add `#[allow(clippy::lint_groups_priority)]`
help: to have lints override the group set `future_incompatible` to a lower priority
|
21 | future_incompatible = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
fields `issuer`, `audience`, `expires_at`, `not_before`, and `issued_at` are never read:
src/iam.rs#L15
warning: fields `issuer`, `audience`, `expires_at`, `not_before`, and `issued_at` are never read
--> src/iam.rs:15:9
|
13 | pub struct Claims {
| ------ fields in this struct
14 | #[serde(rename = "iss")]
15 | pub issuer: String,
| ^^^^^^
...
19 | pub audience: Vec<String>,
| ^^^^^^^^
20 | #[serde(rename = "exp")]
21 | pub expires_at: i64,
| ^^^^^^^^^^
22 | #[serde(rename = "nbf")]
23 | pub not_before: i64,
| ^^^^^^^^^^
24 | #[serde(rename = "iat")]
25 | pub issued_at: i64,
| ^^^^^^^^^
|
= note: `Claims` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis
= note: `#[warn(dead_code)]` on by default
|
lint group `all` has the same priority (0) as a lint:
Cargo.toml#L26
warning: lint group `all` has the same priority (0) as a lint
--> Cargo.toml:26:1
|
26 | all = "warn"
| ^^^ ------ has an implicit priority of 0
27 | dbg_macro = "warn"
| --------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `all` to a lower priority
|
26 | all = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `rust_2018_idioms` has the same priority (0) as a lint:
Cargo.toml#L20
warning: lint group `rust_2018_idioms` has the same priority (0) as a lint
--> Cargo.toml:20:1
|
20 | rust_2018_idioms = "warn"
| ^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
...
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `rust_2018_idioms` to a lower priority
|
20 | rust_2018_idioms = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `nonstandard_style` has the same priority (0) as a lint:
Cargo.toml#L22
warning: lint group `nonstandard_style` has the same priority (0) as a lint
--> Cargo.toml:22:1
|
22 | nonstandard_style = "warn"
| ^^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `nonstandard_style` to a lower priority
|
22 | nonstandard_style = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `future_incompatible` has the same priority (0) as a lint:
Cargo.toml#L21
warning: lint group `future_incompatible` has the same priority (0) as a lint
--> Cargo.toml:21:1
|
21 | future_incompatible = "warn"
| ^^^^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
22 | nonstandard_style = "warn"
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
= note: `-W clippy::lint-groups-priority` implied by `-W clippy::all`
= help: to override `-W clippy::all` add `#[allow(clippy::lint_groups_priority)]`
help: to have lints override the group set `future_incompatible` to a lower priority
|
21 | future_incompatible = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
fields `issuer`, `audience`, `expires_at`, `not_before`, and `issued_at` are never read:
src/iam.rs#L15
warning: fields `issuer`, `audience`, `expires_at`, `not_before`, and `issued_at` are never read
--> src/iam.rs:15:9
|
13 | pub struct Claims {
| ------ fields in this struct
14 | #[serde(rename = "iss")]
15 | pub issuer: String,
| ^^^^^^
...
19 | pub audience: Vec<String>,
| ^^^^^^^^
20 | #[serde(rename = "exp")]
21 | pub expires_at: i64,
| ^^^^^^^^^^
22 | #[serde(rename = "nbf")]
23 | pub not_before: i64,
| ^^^^^^^^^^
24 | #[serde(rename = "iat")]
25 | pub issued_at: i64,
| ^^^^^^^^^
|
= note: `Claims` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis
= note: `#[warn(dead_code)]` on by default
|
lint group `all` has the same priority (0) as a lint:
Cargo.toml#L26
warning: lint group `all` has the same priority (0) as a lint
--> Cargo.toml:26:1
|
26 | all = "warn"
| ^^^ ------ has an implicit priority of 0
27 | dbg_macro = "warn"
| --------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `all` to a lower priority
|
26 | all = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `rust_2018_idioms` has the same priority (0) as a lint:
Cargo.toml#L20
warning: lint group `rust_2018_idioms` has the same priority (0) as a lint
--> Cargo.toml:20:1
|
20 | rust_2018_idioms = "warn"
| ^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
...
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `rust_2018_idioms` to a lower priority
|
20 | rust_2018_idioms = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `nonstandard_style` has the same priority (0) as a lint:
Cargo.toml#L22
warning: lint group `nonstandard_style` has the same priority (0) as a lint
--> Cargo.toml:22:1
|
22 | nonstandard_style = "warn"
| ^^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `nonstandard_style` to a lower priority
|
22 | nonstandard_style = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `future_incompatible` has the same priority (0) as a lint:
Cargo.toml#L21
warning: lint group `future_incompatible` has the same priority (0) as a lint
--> Cargo.toml:21:1
|
21 | future_incompatible = "warn"
| ^^^^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
22 | nonstandard_style = "warn"
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
= note: `-W clippy::lint-groups-priority` implied by `-W clippy::all`
= help: to override `-W clippy::all` add `#[allow(clippy::lint_groups_priority)]`
help: to have lints override the group set `future_incompatible` to a lower priority
|
21 | future_incompatible = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `all` has the same priority (0) as a lint:
Cargo.toml#L26
warning: lint group `all` has the same priority (0) as a lint
--> Cargo.toml:26:1
|
26 | all = "warn"
| ^^^ ------ has an implicit priority of 0
27 | dbg_macro = "warn"
| --------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `all` to a lower priority
|
26 | all = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `rust_2018_idioms` has the same priority (0) as a lint:
Cargo.toml#L20
warning: lint group `rust_2018_idioms` has the same priority (0) as a lint
--> Cargo.toml:20:1
|
20 | rust_2018_idioms = "warn"
| ^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
...
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `rust_2018_idioms` to a lower priority
|
20 | rust_2018_idioms = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `nonstandard_style` has the same priority (0) as a lint:
Cargo.toml#L22
warning: lint group `nonstandard_style` has the same priority (0) as a lint
--> Cargo.toml:22:1
|
22 | nonstandard_style = "warn"
| ^^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `nonstandard_style` to a lower priority
|
22 | nonstandard_style = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `future_incompatible` has the same priority (0) as a lint:
Cargo.toml#L21
warning: lint group `future_incompatible` has the same priority (0) as a lint
--> Cargo.toml:21:1
|
21 | future_incompatible = "warn"
| ^^^^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
22 | nonstandard_style = "warn"
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
= note: `-W clippy::lint-groups-priority` implied by `-W clippy::all`
= help: to override `-W clippy::all` add `#[allow(clippy::lint_groups_priority)]`
help: to have lints override the group set `future_incompatible` to a lower priority
|
21 | future_incompatible = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `all` has the same priority (0) as a lint:
Cargo.toml#L26
warning: lint group `all` has the same priority (0) as a lint
--> Cargo.toml:26:1
|
26 | all = "warn"
| ^^^ ------ has an implicit priority of 0
27 | dbg_macro = "warn"
| --------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `all` to a lower priority
|
26 | all = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `rust_2018_idioms` has the same priority (0) as a lint:
Cargo.toml#L20
warning: lint group `rust_2018_idioms` has the same priority (0) as a lint
--> Cargo.toml:20:1
|
20 | rust_2018_idioms = "warn"
| ^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
...
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `rust_2018_idioms` to a lower priority
|
20 | rust_2018_idioms = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `nonstandard_style` has the same priority (0) as a lint:
Cargo.toml#L22
warning: lint group `nonstandard_style` has the same priority (0) as a lint
--> Cargo.toml:22:1
|
22 | nonstandard_style = "warn"
| ^^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `nonstandard_style` to a lower priority
|
22 | nonstandard_style = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `future_incompatible` has the same priority (0) as a lint:
Cargo.toml#L21
warning: lint group `future_incompatible` has the same priority (0) as a lint
--> Cargo.toml:21:1
|
21 | future_incompatible = "warn"
| ^^^^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
22 | nonstandard_style = "warn"
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
= note: `-W clippy::lint-groups-priority` implied by `-W clippy::all`
= help: to override `-W clippy::all` add `#[allow(clippy::lint_groups_priority)]`
help: to have lints override the group set `future_incompatible` to a lower priority
|
21 | future_incompatible = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `all` has the same priority (0) as a lint:
Cargo.toml#L26
warning: lint group `all` has the same priority (0) as a lint
--> Cargo.toml:26:1
|
26 | all = "warn"
| ^^^ ------ has an implicit priority of 0
27 | dbg_macro = "warn"
| --------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `all` to a lower priority
|
26 | all = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `rust_2018_idioms` has the same priority (0) as a lint:
Cargo.toml#L20
warning: lint group `rust_2018_idioms` has the same priority (0) as a lint
--> Cargo.toml:20:1
|
20 | rust_2018_idioms = "warn"
| ^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
...
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `rust_2018_idioms` to a lower priority
|
20 | rust_2018_idioms = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `nonstandard_style` has the same priority (0) as a lint:
Cargo.toml#L22
warning: lint group `nonstandard_style` has the same priority (0) as a lint
--> Cargo.toml:22:1
|
22 | nonstandard_style = "warn"
| ^^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `nonstandard_style` to a lower priority
|
22 | nonstandard_style = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `future_incompatible` has the same priority (0) as a lint:
Cargo.toml#L21
warning: lint group `future_incompatible` has the same priority (0) as a lint
--> Cargo.toml:21:1
|
21 | future_incompatible = "warn"
| ^^^^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
22 | nonstandard_style = "warn"
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
= note: `-W clippy::lint-groups-priority` implied by `-W clippy::all`
= help: to override `-W clippy::all` add `#[allow(clippy::lint_groups_priority)]`
help: to have lints override the group set `future_incompatible` to a lower priority
|
21 | future_incompatible = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `all` has the same priority (0) as a lint:
Cargo.toml#L26
warning: lint group `all` has the same priority (0) as a lint
--> Cargo.toml:26:1
|
26 | all = "warn"
| ^^^ ------ has an implicit priority of 0
27 | dbg_macro = "warn"
| --------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `all` to a lower priority
|
26 | all = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `rust_2018_idioms` has the same priority (0) as a lint:
Cargo.toml#L20
warning: lint group `rust_2018_idioms` has the same priority (0) as a lint
--> Cargo.toml:20:1
|
20 | rust_2018_idioms = "warn"
| ^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
...
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `rust_2018_idioms` to a lower priority
|
20 | rust_2018_idioms = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `nonstandard_style` has the same priority (0) as a lint:
Cargo.toml#L22
warning: lint group `nonstandard_style` has the same priority (0) as a lint
--> Cargo.toml:22:1
|
22 | nonstandard_style = "warn"
| ^^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `nonstandard_style` to a lower priority
|
22 | nonstandard_style = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `future_incompatible` has the same priority (0) as a lint:
Cargo.toml#L21
warning: lint group `future_incompatible` has the same priority (0) as a lint
--> Cargo.toml:21:1
|
21 | future_incompatible = "warn"
| ^^^^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
22 | nonstandard_style = "warn"
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
= note: `-W clippy::lint-groups-priority` implied by `-W clippy::all`
= help: to override `-W clippy::all` add `#[allow(clippy::lint_groups_priority)]`
help: to have lints override the group set `future_incompatible` to a lower priority
|
21 | future_incompatible = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `all` has the same priority (0) as a lint:
Cargo.toml#L26
warning: lint group `all` has the same priority (0) as a lint
--> Cargo.toml:26:1
|
26 | all = "warn"
| ^^^ ------ has an implicit priority of 0
27 | dbg_macro = "warn"
| --------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `all` to a lower priority
|
26 | all = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `rust_2018_idioms` has the same priority (0) as a lint:
Cargo.toml#L20
warning: lint group `rust_2018_idioms` has the same priority (0) as a lint
--> Cargo.toml:20:1
|
20 | rust_2018_idioms = "warn"
| ^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
...
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `rust_2018_idioms` to a lower priority
|
20 | rust_2018_idioms = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `nonstandard_style` has the same priority (0) as a lint:
Cargo.toml#L22
warning: lint group `nonstandard_style` has the same priority (0) as a lint
--> Cargo.toml:22:1
|
22 | nonstandard_style = "warn"
| ^^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `nonstandard_style` to a lower priority
|
22 | nonstandard_style = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `future_incompatible` has the same priority (0) as a lint:
Cargo.toml#L21
warning: lint group `future_incompatible` has the same priority (0) as a lint
--> Cargo.toml:21:1
|
21 | future_incompatible = "warn"
| ^^^^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
22 | nonstandard_style = "warn"
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
= note: `-W clippy::lint-groups-priority` implied by `-W clippy::all`
= help: to override `-W clippy::all` add `#[allow(clippy::lint_groups_priority)]`
help: to have lints override the group set `future_incompatible` to a lower priority
|
21 | future_incompatible = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `all` has the same priority (0) as a lint:
Cargo.toml#L26
warning: lint group `all` has the same priority (0) as a lint
--> Cargo.toml:26:1
|
26 | all = "warn"
| ^^^ ------ has an implicit priority of 0
27 | dbg_macro = "warn"
| --------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `all` to a lower priority
|
26 | all = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `rust_2018_idioms` has the same priority (0) as a lint:
Cargo.toml#L20
warning: lint group `rust_2018_idioms` has the same priority (0) as a lint
--> Cargo.toml:20:1
|
20 | rust_2018_idioms = "warn"
| ^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
...
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `rust_2018_idioms` to a lower priority
|
20 | rust_2018_idioms = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `nonstandard_style` has the same priority (0) as a lint:
Cargo.toml#L22
warning: lint group `nonstandard_style` has the same priority (0) as a lint
--> Cargo.toml:22:1
|
22 | nonstandard_style = "warn"
| ^^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
help: to have lints override the group set `nonstandard_style` to a lower priority
|
22 | nonstandard_style = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
lint group `future_incompatible` has the same priority (0) as a lint:
Cargo.toml#L21
warning: lint group `future_incompatible` has the same priority (0) as a lint
--> Cargo.toml:21:1
|
21 | future_incompatible = "warn"
| ^^^^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0
22 | nonstandard_style = "warn"
23 | elided_lifetimes_in_paths = "allow"
| ------------------------- has the same priority as this lint
|
= note: the order of the lints in the table is ignored by Cargo
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
= note: `-W clippy::lint-groups-priority` implied by `-W clippy::all`
= help: to override `-W clippy::all` add `#[allow(clippy::lint_groups_priority)]`
help: to have lints override the group set `future_incompatible` to a lower priority
|
21 | future_incompatible = { level = "warn", priority = -1 }
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|