CI #1469
Annotations
10 warnings
|
capnp/src/schema_capnp.rs#L2132
warning: variables can be used directly in the `format!` string
--> capnp/src/schema_capnp.rs:2132:21
|
2132 | panic!("invalid annotation indices ({:?}, {}) ", child_index, index)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
help: change this to
|
2132 - panic!("invalid annotation indices ({:?}, {}) ", child_index, index)
2132 + panic!("invalid annotation indices ({child_index:?}, {index}) ")
|
|
|
capnp/src/schema_capnp.rs#L2125
warning: variables can be used directly in the `format!` string
--> capnp/src/schema_capnp.rs:2125:30
|
2125 | _ => panic!("invalid field index {}", index),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
help: change this to
|
2125 - _ => panic!("invalid field index {}", index),
2125 + _ => panic!("invalid field index {index}"),
|
|
|
capnp/src/schema_capnp.rs#L1822
warning: variables can be used directly in the `format!` string
--> capnp/src/schema_capnp.rs:1822:17
|
1822 | panic!("invalid annotation indices ({:?}, {}) ", child_index, index)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
help: change this to
|
1822 - panic!("invalid annotation indices ({:?}, {}) ", child_index, index)
1822 + panic!("invalid annotation indices ({child_index:?}, {index}) ")
|
|
|
capnp/src/schema_capnp.rs#L1815
warning: variables can be used directly in the `format!` string
--> capnp/src/schema_capnp.rs:1815:26
|
1815 | _ => panic!("invalid field index {}", index),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
help: change this to
|
1815 - _ => panic!("invalid field index {}", index),
1815 + _ => panic!("invalid field index {index}"),
|
|
|
capnp/src/schema_capnp.rs#L1405
warning: variables can be used directly in the `format!` string
--> capnp/src/schema_capnp.rs:1405:17
|
1405 | panic!("invalid annotation indices ({:?}, {}) ", child_index, index)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
help: change this to
|
1405 - panic!("invalid annotation indices ({:?}, {}) ", child_index, index)
1405 + panic!("invalid annotation indices ({child_index:?}, {index}) ")
|
|
|
capnp/src/schema_capnp.rs#L1398
warning: variables can be used directly in the `format!` string
--> capnp/src/schema_capnp.rs:1398:26
|
1398 | _ => panic!("invalid field index {}", index),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
help: change this to
|
1398 - _ => panic!("invalid field index {}", index),
1398 + _ => panic!("invalid field index {index}"),
|
|
|
capnp/src/schema_capnp.rs#L1080
warning: variables can be used directly in the `format!` string
--> capnp/src/schema_capnp.rs:1080:17
|
1080 | panic!("invalid annotation indices ({:?}, {}) ", child_index, index)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
help: change this to
|
1080 - panic!("invalid annotation indices ({:?}, {}) ", child_index, index)
1080 + panic!("invalid annotation indices ({child_index:?}, {index}) ")
|
|
|
capnp/src/schema_capnp.rs#L1073
warning: variables can be used directly in the `format!` string
--> capnp/src/schema_capnp.rs:1073:26
|
1073 | _ => panic!("invalid field index {}", index),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
help: change this to
|
1073 - _ => panic!("invalid field index {}", index),
1073 + _ => panic!("invalid field index {index}"),
|
|
|
capnp/src/schema_capnp.rs#L762
warning: variables can be used directly in the `format!` string
--> capnp/src/schema_capnp.rs:762:13
|
762 | panic!("invalid annotation indices ({:?}, {}) ", child_index, index)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
help: change this to
|
762 - panic!("invalid annotation indices ({:?}, {}) ", child_index, index)
762 + panic!("invalid annotation indices ({child_index:?}, {index}) ")
|
|
|
capnp/src/schema_capnp.rs#L755
warning: variables can be used directly in the `format!` string
--> capnp/src/schema_capnp.rs:755:14
|
755 | _ => panic!("invalid field index {}", index),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
= note: `#[warn(clippy::uninlined_format_args)]` on by default
help: change this to
|
755 - _ => panic!("invalid field index {}", index),
755 + _ => panic!("invalid field index {index}"),
|
|
The logs for this run have expired and are no longer available.
Loading