Skip to content

Add rustls 'tls12' feature to continue to support TLS 1.2 connections… #227

Add rustls 'tls12' feature to continue to support TLS 1.2 connections…

Add rustls 'tls12' feature to continue to support TLS 1.2 connections… #227

Triggered via push December 18, 2024 05:56
Status Failure
Total duration 5m 50s
Artifacts

ci.yml

on: push
Matrix: test
Fit to window
Zoom out
Zoom in

Annotations

1 error and 31 warnings
test (windows-latest)
Process completed with exit code 101.
method `lazy_read` is never used: tests/tools/tls.rs#L107
warning: method `lazy_read` is never used --> tests/tools/tls.rs:107:8 | 106 | impl LazyFile { | ------------- method in this implementation 107 | fn lazy_read(&mut self, buf: &mut [u8]) -> io::Result<usize> { | ^^^^^^^^^
struct `LazyFile` is never constructed: tests/tools/tls.rs#L101
warning: struct `LazyFile` is never constructed --> tests/tools/tls.rs:101:8 | 101 | struct LazyFile { | ^^^^^^^^ | = note: `#[warn(dead_code)]` on by default
usage of a legacy numeric method: src/parsing/buffers.rs#L230
warning: usage of a legacy numeric method --> src/parsing/buffers.rs:230:55 | 230 | read_line_strict(&mut reader, &mut line, u64::max_value()).ok(), | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 230 | read_line_strict(&mut reader, &mut line, u64::MAX).ok(), | ~~~
usage of a legacy numeric method: src/parsing/buffers.rs#L218
warning: usage of a legacy numeric method --> src/parsing/buffers.rs:218:55 | 218 | read_line_strict(&mut reader, &mut line, u64::max_value()).ok(), | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 218 | read_line_strict(&mut reader, &mut line, u64::MAX).ok(), | ~~~
usage of a legacy numeric method: src/parsing/buffers.rs#L204
warning: usage of a legacy numeric method --> src/parsing/buffers.rs:204:55 | 204 | read_line_strict(&mut reader, &mut line, u64::max_value()) | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 204 | read_line_strict(&mut reader, &mut line, u64::MAX) | ~~~
usage of a legacy numeric method: src/parsing/buffers.rs#L194
warning: usage of a legacy numeric method --> src/parsing/buffers.rs:194:62 | 194 | assert_eq!(read_line_strict(&mut reader, &mut line, u64::max_value()).ok(), Some(2)); | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 194 | assert_eq!(read_line_strict(&mut reader, &mut line, u64::MAX).ok(), Some(2)); | ~~~
usage of a legacy numeric method: src/parsing/buffers.rs#L183
warning: usage of a legacy numeric method --> src/parsing/buffers.rs:183:55 | 183 | read_line_strict(&mut reader, &mut line, u64::max_value()).ok(), | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 183 | read_line_strict(&mut reader, &mut line, u64::MAX).ok(), | ~~~
usage of a legacy numeric method: src/parsing/buffers.rs#L161
warning: usage of a legacy numeric method --> src/parsing/buffers.rs:161:55 | 161 | assert_eq!(read_line(&mut reader, &mut line, u64::max_value()).ok(), Some(1)); | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 161 | assert_eq!(read_line(&mut reader, &mut line, u64::MAX).ok(), Some(1)); | ~~~
usage of a legacy numeric method: src/parsing/buffers.rs#L152
warning: usage of a legacy numeric method --> src/parsing/buffers.rs:152:55 | 152 | assert_eq!(read_line(&mut reader, &mut line, u64::max_value()).ok(), Some(2)); | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 152 | assert_eq!(read_line(&mut reader, &mut line, u64::MAX).ok(), Some(2)); | ~~~
usage of a legacy numeric method: src/parsing/buffers.rs#L143
warning: usage of a legacy numeric method --> src/parsing/buffers.rs:143:55 | 143 | assert_eq!(read_line(&mut reader, &mut line, u64::max_value()).ok(), Some(7)); | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 143 | assert_eq!(read_line(&mut reader, &mut line, u64::MAX).ok(), Some(7)); | ~~~
usage of a legacy numeric method: src/parsing/buffers.rs#L140
warning: usage of a legacy numeric method --> src/parsing/buffers.rs:140:55 | 140 | assert_eq!(read_line(&mut reader, &mut line, u64::max_value()).ok(), Some(7)); | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 140 | assert_eq!(read_line(&mut reader, &mut line, u64::MAX).ok(), Some(7)); | ~~~
usage of a legacy numeric method: src/parsing/buffers.rs#L131
warning: usage of a legacy numeric method --> src/parsing/buffers.rs:131:55 | 131 | assert_eq!(read_line(&mut reader, &mut line, u64::max_value()).ok(), Some(6)); | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 131 | assert_eq!(read_line(&mut reader, &mut line, u64::MAX).ok(), Some(6)); | ~~~
usage of a legacy numeric method: src/parsing/buffers.rs#L128
warning: usage of a legacy numeric method --> src/parsing/buffers.rs:128:55 | 128 | assert_eq!(read_line(&mut reader, &mut line, u64::max_value()).ok(), Some(6)); | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants = note: `#[warn(clippy::legacy_numeric_constants)]` on by default help: use the associated constant instead | 128 | assert_eq!(read_line(&mut reader, &mut line, u64::MAX).ok(), Some(6)); | ~~~
clippy
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
clippy
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
clippy
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
clippy
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
clippy
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test (macos-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test (macos-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test (macos-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test (macos-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test (windows-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test (windows-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test (windows-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test (windows-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test (ubuntu-latest)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
test (ubuntu-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test (ubuntu-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test (ubuntu-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test (ubuntu-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/