Skip to content

build: update dependnecy versions #42

build: update dependnecy versions

build: update dependnecy versions #42

GitHub Actions / clippy failed Sep 12, 2024 in 5s

clippy

384 errors

Details

Results

Message level Amount
Internal compiler error 0
Error 384
Warning 0
Note 0
Help 0

Versions

  • rustc 1.81.0 (eeb90cda1 2024-09-04)
  • cargo 1.81.0 (2dbb1af80 2024-08-20)
  • clippy 0.1.81 (eeb90cd 2024-09-04)

Annotations

Check failure on line 68 in rdftk_query/src/sparql/results/xml.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unused variable: `writer`

error: unused variable: `writer`
  --> rdftk_query/src/sparql/results/xml.rs:68:37
   |
68 | pub fn to_writer<T, W>(results: &T, writer: &mut W) -> Result<(), Error>
   |                                     ^^^^^^ help: if this is intentional, prefix it with an underscore: `_writer`

Check failure on line 68 in rdftk_query/src/sparql/results/xml.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unused variable: `results`

error: unused variable: `results`
  --> rdftk_query/src/sparql/results/xml.rs:68:24
   |
68 | pub fn to_writer<T, W>(results: &T, writer: &mut W) -> Result<(), Error>
   |                        ^^^^^^^ help: if this is intentional, prefix it with an underscore: `_results`

Check failure on line 37 in rdftk_query/src/sparql/results/xml.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unused variable: `reader`

error: unused variable: `reader`
  --> rdftk_query/src/sparql/results/xml.rs:37:23
   |
37 | pub fn from_reader<R>(reader: R) -> Result<Results, Error>
   |                       ^^^^^^ help: if this is intentional, prefix it with an underscore: `_reader`

Check failure on line 68 in rdftk_query/src/sparql/results/tabular.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unused variable: `writer`

error: unused variable: `writer`
  --> rdftk_query/src/sparql/results/tabular.rs:68:37
   |
68 | pub fn to_writer<T, W>(results: &T, writer: &mut W) -> Result<(), Error>
   |                                     ^^^^^^ help: if this is intentional, prefix it with an underscore: `_writer`

Check failure on line 68 in rdftk_query/src/sparql/results/tabular.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unused variable: `results`

error: unused variable: `results`
  --> rdftk_query/src/sparql/results/tabular.rs:68:24
   |
68 | pub fn to_writer<T, W>(results: &T, writer: &mut W) -> Result<(), Error>
   |                        ^^^^^^^ help: if this is intentional, prefix it with an underscore: `_results`

Check failure on line 37 in rdftk_query/src/sparql/results/tabular.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unused variable: `reader`

error: unused variable: `reader`
  --> rdftk_query/src/sparql/results/tabular.rs:37:23
   |
37 | pub fn from_reader<R>(reader: R) -> Result<Results, Error>
   |                       ^^^^^^ help: if this is intentional, prefix it with an underscore: `_reader`

Check failure on line 68 in rdftk_query/src/sparql/results/json.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unused variable: `writer`

error: unused variable: `writer`
  --> rdftk_query/src/sparql/results/json.rs:68:37
   |
68 | pub fn to_writer<T, W>(results: &T, writer: &mut W) -> Result<(), Error>
   |                                     ^^^^^^ help: if this is intentional, prefix it with an underscore: `_writer`

Check failure on line 68 in rdftk_query/src/sparql/results/json.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unused variable: `results`

error: unused variable: `results`
  --> rdftk_query/src/sparql/results/json.rs:68:24
   |
68 | pub fn to_writer<T, W>(results: &T, writer: &mut W) -> Result<(), Error>
   |                        ^^^^^^^ help: if this is intentional, prefix it with an underscore: `_results`

Check failure on line 37 in rdftk_query/src/sparql/results/json.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unused variable: `reader`

error: unused variable: `reader`
  --> rdftk_query/src/sparql/results/json.rs:37:23
   |
37 | pub fn from_reader<R>(reader: R) -> Result<Results, Error>
   |                       ^^^^^^ help: if this is intentional, prefix it with an underscore: `_reader`

Check failure on line 59 in rdftk_query/src/sparql/results/csv.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unused variable: `row`

error: unused variable: `row`
  --> rdftk_query/src/sparql/results/csv.rs:59:9
   |
59 |     for row in reader.records() {}
   |         ^^^ help: if this is intentional, prefix it with an underscore: `_row`

Check failure on line 56 in rdftk_query/src/sparql/results/csv.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unused variable: `headers`

error: unused variable: `headers`
  --> rdftk_query/src/sparql/results/csv.rs:56:13
   |
56 |         let headers = reader.headers();
   |             ^^^^^^^ help: if this is intentional, prefix it with an underscore: `_headers`

Check failure on line 98 in rdftk_query/src/sparql/mod.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unused variable: `s`

error: unused variable: `s`
  --> rdftk_query/src/sparql/mod.rs:98:21
   |
98 |     pub fn is_valid(s: &str) -> bool {
   |                     ^ help: if this is intentional, prefix it with an underscore: `_s`
   |
   = note: `-D unused-variables` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(unused_variables)]`

Check failure on line 129 in rdftk_query/src/sparql/results/csv.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

no variant or associated item named `with_chain` found for enum `rdftk_core::error::Error` in the current scope

error[E0599]: no variant or associated item named `with_chain` found for enum `rdftk_core::error::Error` in the current scope
   --> rdftk_query/src/sparql/results/csv.rs:129:12
    |
129 |     Error::with_chain(
    |            ^^^^^^^^^^ variant or associated item not found in `Error`

Check failure on line 68 in rdftk_query/src/sparql/results/xml.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unused variable: `writer`

error: unused variable: `writer`
  --> rdftk_query/src/sparql/results/xml.rs:68:37
   |
68 | pub fn to_writer<T, W>(results: &T, writer: &mut W) -> Result<(), Error>
   |                                     ^^^^^^ help: if this is intentional, prefix it with an underscore: `_writer`

Check failure on line 68 in rdftk_query/src/sparql/results/xml.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unused variable: `results`

error: unused variable: `results`
  --> rdftk_query/src/sparql/results/xml.rs:68:24
   |
68 | pub fn to_writer<T, W>(results: &T, writer: &mut W) -> Result<(), Error>
   |                        ^^^^^^^ help: if this is intentional, prefix it with an underscore: `_results`

Check failure on line 37 in rdftk_query/src/sparql/results/xml.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unused variable: `reader`

error: unused variable: `reader`
  --> rdftk_query/src/sparql/results/xml.rs:37:23
   |
37 | pub fn from_reader<R>(reader: R) -> Result<Results, Error>
   |                       ^^^^^^ help: if this is intentional, prefix it with an underscore: `_reader`

Check failure on line 68 in rdftk_query/src/sparql/results/tabular.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unused variable: `writer`

error: unused variable: `writer`
  --> rdftk_query/src/sparql/results/tabular.rs:68:37
   |
68 | pub fn to_writer<T, W>(results: &T, writer: &mut W) -> Result<(), Error>
   |                                     ^^^^^^ help: if this is intentional, prefix it with an underscore: `_writer`

Check failure on line 68 in rdftk_query/src/sparql/results/tabular.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unused variable: `results`

error: unused variable: `results`
  --> rdftk_query/src/sparql/results/tabular.rs:68:24
   |
68 | pub fn to_writer<T, W>(results: &T, writer: &mut W) -> Result<(), Error>
   |                        ^^^^^^^ help: if this is intentional, prefix it with an underscore: `_results`

Check failure on line 37 in rdftk_query/src/sparql/results/tabular.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unused variable: `reader`

error: unused variable: `reader`
  --> rdftk_query/src/sparql/results/tabular.rs:37:23
   |
37 | pub fn from_reader<R>(reader: R) -> Result<Results, Error>
   |                       ^^^^^^ help: if this is intentional, prefix it with an underscore: `_reader`

Check failure on line 68 in rdftk_query/src/sparql/results/json.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unused variable: `writer`

error: unused variable: `writer`
  --> rdftk_query/src/sparql/results/json.rs:68:37
   |
68 | pub fn to_writer<T, W>(results: &T, writer: &mut W) -> Result<(), Error>
   |                                     ^^^^^^ help: if this is intentional, prefix it with an underscore: `_writer`

Check failure on line 68 in rdftk_query/src/sparql/results/json.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unused variable: `results`

error: unused variable: `results`
  --> rdftk_query/src/sparql/results/json.rs:68:24
   |
68 | pub fn to_writer<T, W>(results: &T, writer: &mut W) -> Result<(), Error>
   |                        ^^^^^^^ help: if this is intentional, prefix it with an underscore: `_results`

Check failure on line 37 in rdftk_query/src/sparql/results/json.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unused variable: `reader`

error: unused variable: `reader`
  --> rdftk_query/src/sparql/results/json.rs:37:23
   |
37 | pub fn from_reader<R>(reader: R) -> Result<Results, Error>
   |                       ^^^^^^ help: if this is intentional, prefix it with an underscore: `_reader`

Check failure on line 59 in rdftk_query/src/sparql/results/csv.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unused variable: `row`

error: unused variable: `row`
  --> rdftk_query/src/sparql/results/csv.rs:59:9
   |
59 |     for row in reader.records() {}
   |         ^^^ help: if this is intentional, prefix it with an underscore: `_row`

Check failure on line 56 in rdftk_query/src/sparql/results/csv.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unused variable: `headers`

error: unused variable: `headers`
  --> rdftk_query/src/sparql/results/csv.rs:56:13
   |
56 |         let headers = reader.headers();
   |             ^^^^^^^ help: if this is intentional, prefix it with an underscore: `_headers`

Check failure on line 98 in rdftk_query/src/sparql/mod.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unused variable: `s`

error: unused variable: `s`
  --> rdftk_query/src/sparql/mod.rs:98:21
   |
98 |     pub fn is_valid(s: &str) -> bool {
   |                     ^ help: if this is intentional, prefix it with an underscore: `_s`
   |
   = note: `-D unused-variables` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(unused_variables)]`