Skip to content

just syncing

just syncing #136

Triggered via push January 1, 2024 16:41
Status Failure
Total duration 1m 5s
Artifacts

build.yml

on: push
build-data
55s
build-data
Fit to window
Zoom out
Zoom in

Annotations

26 errors and 21 warnings
expected `{async block@azure-kusto-data/src/operations/v2.rs:14:42: 22:6}` to be a future that resolves to `Option<(Result<Frame, Error>, &mut BufReader<ToJsonLinesReader<impl AsyncBufRead>>)>`, but it resolves to `Result<Option<(_, &mut BufReader<ToJsonLinesReader<impl AsyncBufRead>>)>, _>`: azure-kusto-data/src/operations/v2.rs#L10
error[E0271]: expected `{async block@azure-kusto-data/src/operations/v2.rs:14:42: 22:6}` to be a future that resolves to `Option<(Result<Frame, Error>, &mut BufReader<ToJsonLinesReader<impl AsyncBufRead>>)>`, but it resolves to `Result<Option<(_, &mut BufReader<ToJsonLinesReader<impl AsyncBufRead>>)>, _>` --> azure-kusto-data/src/operations/v2.rs:10:6 | 10 | ) -> impl Stream<Item = Result<v2::Frame, io::Error>> { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `Result<Option<(_, &mut ...)>, ...>`, found `Option<(Result<Frame, Error>, ...)>` | = note: expected enum `std::result::Result<std::option::Option<(_, &mut futures::io::BufReader<_>)>, _>` found enum `std::option::Option<(std::result::Result<models::v2::Frame, std::io::Error>, &mut futures::io::BufReader<_>)>` = note: required for `Unfold<&mut BufReader<ToJsonLinesReader<impl AsyncBufRead>>, {closure@v2.rs:14:33}, ...>` to implement `futures::Stream` = note: the full type name has been written to '/home/runner/work/azure-kusto-rust/azure-kusto-rust/target/debug/deps/azure_kusto_data-bea9337dce48b219.long-type-15673669992488279962.txt'
expected `{async block@azure-kusto-data/src/operations/v2.rs:14:42: 22:6}` to be a future that resolves to `Option<(_, &mut BufReader<ToJsonLinesReader<impl AsyncBufRead>>)>`, but it resolves to `Result<Option<(_, &mut BufReader<ToJsonLinesReader<impl AsyncBufRead>>)>, _>`: azure-kusto-data/src/operations/v2.rs#L10
error[E0271]: expected `{async block@azure-kusto-data/src/operations/v2.rs:14:42: 22:6}` to be a future that resolves to `Option<(_, &mut BufReader<ToJsonLinesReader<impl AsyncBufRead>>)>`, but it resolves to `Result<Option<(_, &mut BufReader<ToJsonLinesReader<impl AsyncBufRead>>)>, _>` --> azure-kusto-data/src/operations/v2.rs:10:6 | 10 | ) -> impl Stream<Item = Result<v2::Frame, io::Error>> { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `Result<Option<(_, &mut ...)>, ...>`, found `Option<(_, &mut BufReader<...>)>` | = note: expected enum `std::result::Result<std::option::Option<(_, &mut futures::io::BufReader<_>)>, _>` found enum `std::option::Option<(_, &mut futures::io::BufReader<_>)>` = note: required for `Unfold<&mut BufReader<ToJsonLinesReader<impl AsyncBufRead>>, {closure@v2.rs:14:33}, ...>` to implement `futures::Stream` = note: the full type name has been written to '/home/runner/work/azure-kusto-rust/azure-kusto-rust/target/debug/deps/azure_kusto_data-bea9337dce48b219.long-type-15673669992488279962.txt'
expected `{async block@azure-kusto-data/src/operations/v2.rs:14:42: 22:6}` to be a future that resolves to `Option<(_, &mut BufReader<ToJsonLinesReader<impl AsyncBufRead>>)>`, but it resolves to `Result<Option<(_, &mut BufReader<ToJsonLinesReader<impl AsyncBufRead>>)>, _>`: azure-kusto-data/src/operations/v2.rs#L14
error[E0271]: expected `{async block@azure-kusto-data/src/operations/v2.rs:14:42: 22:6}` to be a future that resolves to `Option<(_, &mut BufReader<ToJsonLinesReader<impl AsyncBufRead>>)>`, but it resolves to `Result<Option<(_, &mut BufReader<ToJsonLinesReader<impl AsyncBufRead>>)>, _>` --> azure-kusto-data/src/operations/v2.rs:14:5 | 14 | stream::unfold(&mut reader, |reader| async move { | ^^^^^^^^^^^^^^ expected `Option<(_, &mut BufReader<...>)>`, found `Result<Option<(_, &mut ...)>, ...>` | = note: expected enum `std::option::Option<(_, &mut futures::io::BufReader<_>)>` found enum `std::result::Result<std::option::Option<(_, &mut futures::io::BufReader<_>)>, _>` note: required by a bound in `futures::stream::unfold` --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/futures-util-0.3.30/src/stream/unfold.rs:53:17 | 50 | pub fn unfold<T, F, Fut, Item>(init: T, f: F) -> Unfold<T, F, Fut> | ------ required by a bound in this function ... 53 | Fut: Future<Output = Option<(Item, T)>>, | ^^^^^^^^^^^^^^^^^^^^^^^^^^ required by this bound in `unfold`
`impl AsyncBufRead` cannot be unpinned: azure-kusto-data/src/operations/v2.rs#L16
error[E0277]: `impl AsyncBufRead` cannot be unpinned --> azure-kusto-data/src/operations/v2.rs:16:55 | 16 | let read = reader.read_until(b'\n', &mut buf).await?; | ^^^^^ within `futures::io::buf_reader::_::__Origin<'_, operations::skip_reader::ToJsonLinesReader<impl AsyncBufRead>>`, the trait `std::marker::Unpin` is not implemented for `impl AsyncBufRead` | = note: consider using the `pin!` macro consider using `Box::pin` if you need to access the pinned value outside of the current scope note: required because it appears within the type `operations::skip_reader::ToJsonLinesReader<impl AsyncBufRead>` --> azure-kusto-data/src/operations/skip_reader.rs:7:12 | 7 | pub struct ToJsonLinesReader<T: AsyncRead> { | ^^^^^^^^^^^^^^^^^ note: required because it appears within the type `futures::io::buf_reader::_::__Origin<'_, operations::skip_reader::ToJsonLinesReader<impl AsyncBufRead>>` --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/futures-util-0.3.30/src/io/buf_reader.rs:11:1 | 11 | / pin_project! { 12 | | /// The `BufReader` struct adds buffering to any reader. 13 | | /// 14 | | /// It can be excessively inefficient to work directly with a [`AsyncRead`] ... | 37 | | } 38 | | } | |_^ = note: required for `futures::io::BufReader<operations::skip_reader::ToJsonLinesReader<impl AsyncBufRead>>` to implement `std::marker::Unpin` = note: required for `futures::io::ReadUntil<'_, futures::io::BufReader<operations::skip_reader::ToJsonLinesReader<impl AsyncBufRead>>>` to implement `futures::Future` = note: required for `futures::io::ReadUntil<'_, futures::io::BufReader<operations::skip_reader::ToJsonLinesReader<impl AsyncBufRead>>>` to implement `std::future::IntoFuture` = note: this error originates in the macro `$crate::__pin_project_make_unpin_impl` which comes from the expansion of the macro `pin_project` (in Nightly builds, run with -Z macro-backtrace for more info) help: remove the `.await` | 16 - let read = reader.read_until(b'\n', &mut buf).await?; 16 + let read = reader.read_until(b'\n', &mut buf)?; | help: consider further restricting this bound | 9 | reader: (impl AsyncBufRead + std::marker::Unpin), | ++++++++++++++++++++
`impl AsyncBufRead` cannot be unpinned: azure-kusto-data/src/operations/v2.rs#L16
error[E0277]: `impl AsyncBufRead` cannot be unpinned --> azure-kusto-data/src/operations/v2.rs:16:27 | 16 | let read = reader.read_until(b'\n', &mut buf).await?; | ^^^^^^^^^^ within `futures::io::buf_reader::_::__Origin<'_, operations::skip_reader::ToJsonLinesReader<impl AsyncBufRead>>`, the trait `std::marker::Unpin` is not implemented for `impl AsyncBufRead` | = note: consider using the `pin!` macro consider using `Box::pin` if you need to access the pinned value outside of the current scope note: required because it appears within the type `operations::skip_reader::ToJsonLinesReader<impl AsyncBufRead>` --> azure-kusto-data/src/operations/skip_reader.rs:7:12 | 7 | pub struct ToJsonLinesReader<T: AsyncRead> { | ^^^^^^^^^^^^^^^^^ note: required because it appears within the type `futures::io::buf_reader::_::__Origin<'_, operations::skip_reader::ToJsonLinesReader<impl AsyncBufRead>>` --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/futures-util-0.3.30/src/io/buf_reader.rs:11:1 | 11 | / pin_project! { 12 | | /// The `BufReader` struct adds buffering to any reader. 13 | | /// 14 | | /// It can be excessively inefficient to work directly with a [`AsyncRead`] ... | 37 | | } 38 | | } | |_^ = note: required for `futures::io::BufReader<operations::skip_reader::ToJsonLinesReader<impl AsyncBufRead>>` to implement `std::marker::Unpin` note: required by a bound in `futures::AsyncBufReadExt::read_until` --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/futures-util-0.3.30/src/io/mod.rs:721:15 | 719 | fn read_until<'a>(&'a mut self, byte: u8, buf: &'a mut Vec<u8>) -> ReadUntil<'a, Self> | ---------- required by a bound in this associated function 720 | where 721 | Self: Unpin, | ^^^^^ required by this bound in `AsyncBufReadExt::read_until` = note: this error originates in the macro `$crate::__pin_project_make_unpin_impl` which comes from the expansion of the macro `pin_project` (in Nightly builds, run with -Z macro-backtrace for more info) help: consider further restricting this bound | 9 | reader: (impl AsyncBufRead + std::marker::Unpin), | ++++++++++++++++++++
lifetime parameters or bounds on method `get_token` do not match the trait declaration: azure-kusto-data/src/credentials.rs#L47
error[E0195]: lifetime parameters or bounds on method `get_token` do not match the trait declaration --> azure-kusto-data/src/credentials.rs:47:14 | 47 | async fn get_token(&self, resource: &str) -> azure_core::Result<AccessToken> { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ lifetimes do not match method in trait
lifetime parameters or bounds on method `get_token` do not match the trait declaration: azure-kusto-data/src/credentials.rs#L18
error[E0195]: lifetime parameters or bounds on method `get_token` do not match the trait declaration --> azure-kusto-data/src/credentials.rs:18:14 | 18 | async fn get_token(&self, _resource: &str) -> azure_core::Result<AccessToken> { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ lifetimes do not match method in trait
mismatched types: azure-kusto-data/src/client.rs#L251
error[E0308]: mismatched types --> azure-kusto-data/src/client.rs:251:13 | 250 | Ok(serde_json::from_value::<Vec<T>>(serde_json::Value::Array( | ------------------------ arguments to this enum variant are incorrect 251 | results.rows, | ^^^^^^^^^^^^ expected `Vec<Value>`, found `Vec<Row>` | = note: expected struct `std::vec::Vec<serde_json::Value>` found struct `std::vec::Vec<models::v2::Row>` note: tuple variant defined here --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.109/src/value/mod.rs:160:5 | 160 | Array(Vec<Value>), | ^^^^^
cannot find type `DataSet` in this scope: azure-kusto-data/src/operations/query.rs#L476
error[E0412]: cannot find type `DataSet` in this scope --> azure-kusto-data/src/operations/query.rs:476:25 | 476 | let tables: Vec<DataSet> = serde_json::from_slice(&data)?; | ^^^^^^^ not found in this scope | help: consider importing this type alias | 1 + use crate::models::v2::DataSet; |
failed to resolve: use of undeclared type `DataSet`: azure-kusto-data/src/operations/query.rs#L263
error[E0433]: failed to resolve: use of undeclared type `DataSet` --> azure-kusto-data/src/operations/query.rs:263:17 | 263 | DataSet::TableCompletion(completion) => { | ^^^^^^^ use of undeclared type `DataSet` | help: consider importing this type alias | 1 + use crate::models::v2::DataSet; |
failed to resolve: use of undeclared type `DataSet`: azure-kusto-data/src/operations/query.rs#L260
error[E0433]: failed to resolve: use of undeclared type `DataSet` --> azure-kusto-data/src/operations/query.rs:260:17 | 260 | DataSet::TableProgress(progress) => { | ^^^^^^^ use of undeclared type `DataSet` | help: consider importing this type alias | 1 + use crate::models::v2::DataSet; |
failed to resolve: use of undeclared type `DataSet`: azure-kusto-data/src/operations/query.rs#L253
error[E0433]: failed to resolve: use of undeclared type `DataSet` --> azure-kusto-data/src/operations/query.rs:253:17 | 253 | DataSet::TableFragment(fragment) => { | ^^^^^^^ use of undeclared type `DataSet` | help: consider importing this type alias | 1 + use crate::models::v2::DataSet; |
failed to resolve: use of undeclared type `DataSet`: azure-kusto-data/src/operations/query.rs#L239
error[E0433]: failed to resolve: use of undeclared type `DataSet` --> azure-kusto-data/src/operations/query.rs:239:21 | 239 | if let Some(DataSet::TableHeader(header)) = next_table { | ^^^^^^^ use of undeclared type `DataSet` | help: consider importing this type alias | 1 + use crate::models::v2::DataSet; |
failed to resolve: use of undeclared type `DataSet`: azure-kusto-data/src/operations/query.rs#L227
error[E0433]: failed to resolve: use of undeclared type `DataSet` --> azure-kusto-data/src/operations/query.rs:227:21 | 227 | if let Some(DataSet::DataTable(t)) = next_table { | ^^^^^^^ use of undeclared type `DataSet` | help: consider importing this type alias | 1 + use crate::models::v2::DataSet; |
failed to resolve: use of undeclared type `DataSet`: azure-kusto-data/src/operations/query.rs#L223
error[E0433]: failed to resolve: use of undeclared type `DataSet` --> azure-kusto-data/src/operations/query.rs:223:37 | 223 | DataSet::DataTable(_) | DataSet::TableHeader(_) => Some(t), | ^^^^^^^ use of undeclared type `DataSet` | help: consider importing this type alias | 1 + use crate::models::v2::DataSet; |
failed to resolve: use of undeclared type `DataSet`: azure-kusto-data/src/operations/query.rs#L223
error[E0433]: failed to resolve: use of undeclared type `DataSet` --> azure-kusto-data/src/operations/query.rs:223:13 | 223 | DataSet::DataTable(_) | DataSet::TableHeader(_) => Some(t), | ^^^^^^^ use of undeclared type `DataSet` | help: consider importing this type alias | 1 + use crate::models::v2::DataSet; |
cannot find type `DataSet` in this scope: azure-kusto-data/src/operations/query.rs#L215
error[E0412]: cannot find type `DataSet` in this scope --> azure-kusto-data/src/operations/query.rs:215:25 | 215 | impl<T: Iterator<Item = DataSet>> Iterator for KustoResponseDataSetV2TableIterator<T> { | ^^^^^^^ not found in this scope | help: consider importing this type alias | 1 + use crate::models::v2::DataSet; |
cannot find type `DataSet` in this scope: azure-kusto-data/src/operations/query.rs#L206
error[E0412]: cannot find type `DataSet` in this scope --> azure-kusto-data/src/operations/query.rs:206:25 | 206 | impl<T: Iterator<Item = DataSet>> KustoResponseDataSetV2TableIterator<T> { | ^^^^^^^ not found in this scope | help: consider importing this type alias | 1 + use crate::models::v2::DataSet; |
cannot find type `DataSet` in this scope: azure-kusto-data/src/operations/query.rs#L201
error[E0412]: cannot find type `DataSet` in this scope --> azure-kusto-data/src/operations/query.rs:201:63 | 201 | struct KustoResponseDataSetV2TableIterator<T: Iterator<Item = DataSet>> { | ^^^^^^^ not found in this scope | help: consider importing this type alias | 1 + use crate::models::v2::DataSet; |
cannot find type `DataSet` in this scope: azure-kusto-data/src/operations/query.rs#L176
error[E0412]: cannot find type `DataSet` in this scope --> azure-kusto-data/src/operations/query.rs:176:22 | 176 | pub results: Vec<DataSet>, | ^^^^^^^ not found in this scope | help: consider importing this type alias | 1 + use crate::models::v2::DataSet; |
cannot find type `DataSet` in this scope: azure-kusto-data/src/operations/query.rs#L90
error[E0412]: cannot find type `DataSet` in this scope --> azure-kusto-data/src/operations/query.rs:90:72 | 90 | pub async fn into_stream(self) -> Result<impl Stream<Item = Result<DataSet>>> { | ^^^^^^^ not found in this scope | help: consider importing this type alias | 1 + use crate::models::v2::DataSet; |
cannot find type `DataSet` in this scope: azure-kusto-data/src/operations/query.rs#L44
error[E0412]: cannot find type `DataSet` in this scope --> azure-kusto-data/src/operations/query.rs:44:72 | 44 | pub async fn into_stream(self) -> Result<impl Stream<Item = Result<DataSet>>> { | ^^^^^^^ not found in this scope | help: consider importing this type alias | 1 + use crate::models::v2::DataSet; |
unresolved import `crate::types::KustoTimespan`: azure-kusto-data/src/types/timespan.rs#L2
error[E0432]: unresolved import `crate::types::KustoTimespan` --> azure-kusto-data/src/types/timespan.rs:2:5 | 2 | use crate::types::KustoTimespan; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ no `KustoTimespan` in `types`
unresolved imports `crate::types::KustoDateTime`, `crate::types::KustoTimespan`: azure-kusto-data/src/request_options.rs#L3
error[E0432]: unresolved imports `crate::types::KustoDateTime`, `crate::types::KustoTimespan` --> azure-kusto-data/src/request_options.rs:3:20 | 3 | use crate::types::{KustoDateTime, KustoTimespan}; | ^^^^^^^^^^^^^ ^^^^^^^^^^^^^ no `KustoTimespan` in `types` | | | no `KustoDateTime` in `types`
unresolved imports `crate::types::KustoDateTime`, `crate::types::KustoTimespan`: azure-kusto-data/src/arrow.rs#L17
error[E0432]: unresolved imports `crate::types::KustoDateTime`, `crate::types::KustoTimespan` --> azure-kusto-data/src/arrow.rs:17:20 | 17 | use crate::types::{KustoDateTime, KustoTimespan}; | ^^^^^^^^^^^^^ ^^^^^^^^^^^^^ no `KustoTimespan` in `types` | | | no `KustoDateTime` in `types`
build-data
Clippy had exited with the 101 exit code
unused imports: `Deserialize`, `Serialize`, `Serializer`: azure-kusto-data/src/types/timespan.rs#L5
warning: unused imports: `Deserialize`, `Serialize`, `Serializer` --> azure-kusto-data/src/types/timespan.rs:5:13 | 5 | use serde::{Deserialize, Serialize, Serializer}; | ^^^^^^^^^^^ ^^^^^^^^^ ^^^^^^^^^^
unused import: `time::OffsetDateTime`: azure-kusto-data/src/types/mod.rs#L9
warning: unused import: `time::OffsetDateTime` --> azure-kusto-data/src/types/mod.rs:9:5 | 9 | use time::OffsetDateTime; | ^^^^^^^^^^^^^^^^^^^^
unused import: `std::str::FromStr`: azure-kusto-data/src/types/mod.rs#L8
warning: unused import: `std::str::FromStr` --> azure-kusto-data/src/types/mod.rs:8:5 | 8 | use std::str::FromStr; | ^^^^^^^^^^^^^^^^^
unused import: `std::ops::Deref`: azure-kusto-data/src/types/mod.rs#L7
warning: unused import: `std::ops::Deref` --> azure-kusto-data/src/types/mod.rs:7:5 | 7 | use std::ops::Deref; | ^^^^^^^^^^^^^^^
unused import: `std::fmt::Debug`: azure-kusto-data/src/types/mod.rs#L6
warning: unused import: `std::fmt::Debug` --> azure-kusto-data/src/types/mod.rs:6:5 | 6 | use std::fmt::Debug; | ^^^^^^^^^^^^^^^
unused imports: `Deserialize`, `Serialize`, `Serializer`: azure-kusto-data/src/types/mod.rs#L5
warning: unused imports: `Deserialize`, `Serialize`, `Serializer` --> azure-kusto-data/src/types/mod.rs:5:13 | 5 | use serde::{Deserialize, Serialize, Serializer}; | ^^^^^^^^^^^ ^^^^^^^^^ ^^^^^^^^^^
unused imports: `Display`, `From`, `Into`: azure-kusto-data/src/types/mod.rs#L4
warning: unused imports: `Display`, `From`, `Into` --> azure-kusto-data/src/types/mod.rs:4:19 | 4 | use derive_more::{Display, From, Into}; | ^^^^^^^ ^^^^ ^^^^
unused import: `azure_core::error::ResultExt`: azure-kusto-data/src/types/mod.rs#L3
warning: unused import: `azure_core::error::ResultExt` --> azure-kusto-data/src/types/mod.rs:3:5 | 3 | use azure_core::error::ResultExt; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
unnecessary parentheses around type: azure-kusto-data/src/operations/v2.rs#L9
warning: unnecessary parentheses around type --> azure-kusto-data/src/operations/v2.rs:9:13 | 9 | reader: (impl AsyncBufRead), | ^ ^ | = note: `#[warn(unused_parens)]` on by default help: remove these parentheses | 9 - reader: (impl AsyncBufRead), 9 + reader: impl AsyncBufRead, |
unused import: `AsyncBufRead`: azure-kusto-data/src/operations/skip_reader.rs#L2
warning: unused import: `AsyncBufRead` --> azure-kusto-data/src/operations/skip_reader.rs:2:15 | 2 | use futures::{AsyncBufRead, AsyncRead, AsyncReadExt}; | ^^^^^^^^^^^^
unused imports: `Deserialize`, `Serialize`: azure-kusto-data/src/operations/query.rs#L20
warning: unused imports: `Deserialize`, `Serialize` --> azure-kusto-data/src/operations/query.rs:20:13 | 20 | use serde::{Deserialize, Serialize}; | ^^^^^^^^^^^ ^^^^^^^^^
private item shadows public glob re-export: azure-kusto-data/src/models/v2/mod.rs#L1
warning: private item shadows public glob re-export --> azure-kusto-data/src/models/v2/mod.rs:1:5 | 1 | use crate::models::v2::errors::OneApiError; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | note: the name `OneApiError` in the type namespace is supposed to be publicly re-exported here --> azure-kusto-data/src/models/v2/mod.rs:10:9 | 10 | pub use errors::*; | ^^^^^^^^^ note: but the private item here shadows it --> azure-kusto-data/src/models/v2/mod.rs:1:5 | 1 | use crate::models::v2::errors::OneApiError; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ = note: `#[warn(hidden_glob_reexports)]` on by default
unused import: `std::str::FromStr`: azure-kusto-data/src/arrow.rs#L3
warning: unused import: `std::str::FromStr` --> azure-kusto-data/src/arrow.rs:3:5 | 3 | use std::str::FromStr; | ^^^^^^^^^^^^^^^^^ | = note: `#[warn(unused_imports)]` on by default
build-data
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/clippy-check@v1, codecov/codecov-action@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
build-data
At least one of the FILES, JUNIT_FILES, NUNIT_FILES, XUNIT_FILES, or TRX_FILES options has to be set! Falling back to deprecated default "*.xml"
build-data
Could not find any files for *.xml
build-data
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-data
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-data
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-data
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-data
Error parsing Cargo.toml manifest, fallback to caching entire file: Error: Invalid TOML document: expected key-value, found comma 40: derive_builder = "0.12" 41: derive_more = { version = "1.0.0-beta.6" , features = ["from", "into", "display"] } ^ 42: once_cell = "1"