experiments #619
Annotations
13 errors and 17 warnings
build_and_test (ubuntu-latest, stable)
The process '/home/runner/.cargo/bin/cargo' failed with exit code 101
|
build_and_test (ubuntu-latest, stable)
could not compile `lapin` (example "p") due to 1 previous error
|
build_and_test (ubuntu-latest, stable):
examples/p.rs#L12
failed to resolve: could not find `experimental` in `lapin`
|
build_and_test (ubuntu-latest, nightly)
The process '/home/runner/.cargo/bin/cargo' failed with exit code 101
|
build_and_test (ubuntu-latest, nightly)
could not compile `lapin` (example "t") due to 1 previous error
|
build_and_test (ubuntu-latest, nightly):
examples/t.rs#L15
failed to resolve: could not find `experimental` in `lapin`
|
build_and_test (ubuntu-latest, beta)
The process '/home/runner/.cargo/bin/cargo' failed with exit code 101
|
build_and_test (ubuntu-latest, beta)
could not compile `lapin` (example "t") due to 1 previous error
|
build_and_test (ubuntu-latest, beta):
examples/t.rs#L15
failed to resolve: could not find `experimental` in `lapin`
|
build_and_test (ubuntu-latest, 1.81.0)
The process '/home/runner/.cargo/bin/cargo' failed with exit code 101
|
build_and_test (ubuntu-latest, 1.81.0):
examples/p.rs#L12
failed to resolve: could not find `experimental` in `lapin`
|
build_and_test (ubuntu-latest, 1.81.0)
could not compile `lapin` (example "t") due to 1 previous error
|
build_and_test (ubuntu-latest, 1.81.0):
examples/t.rs#L15
failed to resolve: could not find `experimental` in `lapin`
|
build_and_test (ubuntu-latest, stable)
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/
|
build_and_test (ubuntu-latest, stable)
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/
|
build_and_test (ubuntu-latest, stable)
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/
|
build_and_test (ubuntu-latest, stable)
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/
|
build_and_test (ubuntu-latest, nightly)
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/
|
build_and_test (ubuntu-latest, nightly)
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/
|
build_and_test (ubuntu-latest, nightly)
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/
|
build_and_test (ubuntu-latest, nightly)
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/
|
build_and_test (ubuntu-latest, beta)
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/
|
build_and_test (ubuntu-latest, beta)
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/
|
build_and_test (ubuntu-latest, beta)
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/
|
build_and_test (ubuntu-latest, beta)
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/
|
build_and_test (ubuntu-latest, 1.81.0)
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/
|
build_and_test (ubuntu-latest, 1.81.0)
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/
|
build_and_test (ubuntu-latest, 1.81.0)
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/
|
build_and_test (ubuntu-latest, 1.81.0)
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/
|
using `map` over `inspect`:
src/buffer.rs#L239
warning: using `map` over `inspect`
--> src/buffer.rs:239:28
|
239 | before(s, tmp).map(|s| {
| ^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_inspect
= note: `-W clippy::manual-inspect` implied by `-W clippy::all`
= help: to override `-W clippy::all` add `#[allow(clippy::manual_inspect)]`
help: try
|
239 ~ before(s, tmp).inspect(|s| {
240 ~ s.write.rollback(end);
|
|