Skip to content

Add annitation support #207

Add annitation support

Add annitation support #207

Triggered via pull request June 14, 2024 08:31
Status Failure
Total duration 5m 27s
Artifacts

ci.yaml

on: pull_request
Matrix: test
Rustfmt check
12s
Rustfmt check
Clippy check
36s
Clippy check
Build examples
1m 16s
Build examples
Publish on crates.io
0s
Publish on crates.io
Fit to window
Zoom out
Zoom in

Annotations

37 errors and 48 warnings
unused `async` for function with no await statements: src/client.rs#L91
error: unused `async` for function with no await statements --> src/client.rs:91:5 | 91 | / pub async fn version(&self) -> &str { 92 | | env!("CARGO_PKG_VERSION") 93 | | } | |_____^ | = help: consider removing the `async` from this function = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unused_async = note: `#[deny(clippy::unused_async)]` implied by `#[deny(clippy::pedantic)]`
usage of wildcard import: src/users/client.rs#L1
error: usage of wildcard import --> src/users/client.rs:1:34 | 1 | use crate::{error::Result, http, users::model::*}; | ^^^^^^^^^^^^^^^ help: try: `users::model::User` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#wildcard_imports
item in documentation is missing backticks: src/datasets/model.rs#L879
error: item in documentation is missing backticks --> src/datasets/model.rs:879:46 | 879 | /// The time the event occurred. Matches SysTime if not specified during | ^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown help: try | 879 | /// The time the event occurred. Matches `SysTime` if not specified during | ~~~~~~~~~
item in documentation is missing backticks: src/datasets/model.rs#L793
error: item in documentation is missing backticks --> src/datasets/model.rs:793:24 | 793 | /// Populated when IsPartial is true, must be passed to the next query | ^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown help: try | 793 | /// Populated when `IsPartial` is true, must be passed to the next query | ~~~~~~~~~~~
item in documentation is missing backticks: src/datasets/model.rs#L712
error: item in documentation is missing backticks --> src/datasets/model.rs:712:7 | 712 | /// A VirtualField is not part of a dataset and its value is derived from an | ^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown help: try | 712 | /// A `VirtualField` is not part of a dataset and its value is derived from an | ~~~~~~~~~~~~~~
empty String is being created manually: src/datasets/model.rs#L695
error: empty String is being created manually --> src/datasets/model.rs:695:20 | 695 | field: "".to_string(), | ^^^^^^^^^^^^^^ help: consider using: `String::new()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_string_new = note: `#[deny(clippy::manual_string_new)]` implied by `#[deny(clippy::pedantic)]`
this method could have a `#[must_use]` attribute: src/datasets/model.rs#L88
error: this method could have a `#[must_use]` attribute --> src/datasets/model.rs:88:5 | 88 | pub fn as_str(&self) -> &'static str { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: add the attribute: `#[must_use] pub fn as_str(&self) -> &'static str` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#must_use_candidate
this method could have a `#[must_use]` attribute: src/datasets/model.rs#L40
error: this method could have a `#[must_use]` attribute --> src/datasets/model.rs:40:5 | 40 | pub fn as_str(&self) -> &'static str { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: add the attribute: `#[must_use] pub fn as_str(&self) -> &'static str` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#must_use_candidate
usage of wildcard import: src/datasets/client.rs#L10
error: usage of wildcard import --> src/datasets/client.rs:10:5 | 10 | datasets::model::*, | ^^^^^^^^^^^^^^^^^^ help: try: `datasets::model::{Dataset, DatasetCreateRequest, DatasetUpdateRequest, Info, TrimRequest, TrimResult}` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#wildcard_imports = note: `#[deny(clippy::wildcard_imports)]` implied by `#[deny(clippy::pedantic)]`
you should put bare URLs between `<`/`>` or make a proper Markdown link: src/serde.rs#L4
error: you should put bare URLs between `<`/`>` or make a proper Markdown link --> src/serde.rs:4:9 | 4 | /// See https://github.com/serde-rs/serde/issues/1098#issuecomment-760711617 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown
this method could have a `#[must_use]` attribute: src/limits.rs#L110
error: this method could have a `#[must_use]` attribute --> src/limits.rs:110:5 | 110 | pub fn is_exceeded(&self) -> bool { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: add the attribute: `#[must_use] pub fn is_exceeded(&self) -> bool` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#must_use_candidate
variables can be used directly in the `format!` string: src/http.rs#L43
error: variables can be used directly in the `format!` string --> src/http.rs:43:65 | 43 | let token_header_value = header::HeaderValue::from_str(&format!("Bearer {}", token)) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args help: change this to | 43 - let token_header_value = header::HeaderValue::from_str(&format!("Bearer {}", token)) 43 + let token_header_value = header::HeaderValue::from_str(&format!("Bearer {token}")) |
item in documentation is missing backticks: src/http.rs#L16
error: item in documentation is missing backticks --> src/http.rs:16:32 | 16 | /// Client is a wrapper around reqwest::Client which provides automatically | ^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown help: try | 16 | /// Client is a wrapper around `reqwest::Client` which provides automatically | ~~~~~~~~~~~~~~~~~
item name ends with its containing module's name: src/error.rs#L103
error: item name ends with its containing module's name --> src/error.rs:103:12 | 103 | pub struct AxiomError { | ^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#module_name_repetitions = note: `#[deny(clippy::module_name_repetitions)]` implied by `#[deny(clippy::pedantic)]`
this match arm has an identical body to another arm: src/error.rs#L93
error: this match arm has an identical body to another arm --> src/error.rs:93:13 | 93 | / backoff::Error::Transient { 94 | | err, 95 | | retry_after: _, 96 | | } => Error::Http(err), | |_________________________________^ | = help: or try changing either arm body note: other arm here --> src/error.rs:92:13 | 92 | backoff::Error::Permanent(err) => Error::Http(err), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#match_same_arms = note: `#[deny(clippy::match_same_arms)]` implied by `#[deny(clippy::pedantic)]` help: try merging the arm patterns | 93 ~ backoff::Error::Transient { 94 + err, 95 + retry_after: _, 96 ~ } | backoff::Error::Permanent(err) => Error::Http(err), |
item in documentation is missing backticks: src/error.rs#L88
error: item in documentation is missing backticks --> src/error.rs:88:60 | 88 | /// permanent or transient at this stage so we just return Error::Http. | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown help: try | 88 | /// permanent or transient at this stage so we just return `Error::Http`. | ~~~~~~~~~~~~~
item in documentation is missing backticks: src/error.rs#L53
error: item in documentation is missing backticks --> src/error.rs:53:56 | 53 | /// Duration is out of range (can't be larger than i64::MAX milliseconds). | ^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown = note: `#[deny(clippy::doc_markdown)]` implied by `#[deny(clippy::pedantic)]` help: try | 53 | /// Duration is out of range (can't be larger than `i64::MAX` milliseconds). | ~~~~~~~~~~
docs for function returning `Result` missing `# Errors` section: src/client.rs#L351
error: docs for function returning `Result` missing `# Errors` section --> src/client.rs:351:5 | 351 | pub fn build(self) -> Result<Client> { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#missing_errors_doc
missing `#[must_use]` attribute on a method returning `Self`: src/client.rs#L345
error: missing `#[must_use]` attribute on a method returning `Self` --> src/client.rs:345:5 | 345 | / pub fn with_org_id<S: Into<String>>(mut self, org_id: S) -> Self { 346 | | self.org_id = Some(org_id.into()); 347 | | self 348 | | } | |_____^ | = help: consider adding the `#[must_use]` attribute to the method or directly to the `Self` type = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#return_self_not_must_use
missing `#[must_use]` attribute on a method returning `Self`: src/client.rs#L338
error: missing `#[must_use]` attribute on a method returning `Self` --> src/client.rs:338:5 | 338 | / pub fn with_url<S: Into<String>>(mut self, url: S) -> Self { 339 | | self.url = Some(url.into()); 340 | | self 341 | | } | |_____^ | = help: consider adding the `#[must_use]` attribute to the method or directly to the `Self` type = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#return_self_not_must_use
missing `#[must_use]` attribute on a method returning `Self`: src/client.rs#L330
error: missing `#[must_use]` attribute on a method returning `Self` --> src/client.rs:330:5 | 330 | / pub fn with_token<S: Into<String>>(mut self, token: S) -> Self { 331 | | self.token = Some(token.into()); 332 | | self 333 | | } | |_____^ | = help: consider adding the `#[must_use]` attribute to the method or directly to the `Self` type = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#return_self_not_must_use
missing `#[must_use]` attribute on a method returning `Self`: src/client.rs#L323
error: missing `#[must_use]` attribute on a method returning `Self` --> src/client.rs:323:5 | 323 | / pub fn no_env(mut self) -> Self { 324 | | self.env_fallback = false; 325 | | self 326 | | } | |_____^ | = help: consider adding the `#[must_use]` attribute to the method or directly to the `Self` type = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#return_self_not_must_use = note: `#[deny(clippy::return_self_not_must_use)]` implied by `#[deny(clippy::pedantic)]`
this method could have a `#[must_use]` attribute: src/client.rs#L323
error: this method could have a `#[must_use]` attribute --> src/client.rs:323:5 | 323 | pub fn no_env(mut self) -> Self { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: add the attribute: `#[must_use] pub fn no_env(mut self) -> Self` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#must_use_candidate
consider adding a `;` to the last statement for consistent formatting: src/client.rs#L294
error: consider adding a `;` to the last statement for consistent formatting --> src/client.rs:294:21 | 294 | ingest_status = ingest_status + new_ingest_status | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: add a `;` here: `ingest_status = ingest_status + new_ingest_status;` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#semicolon_if_nothing_returned
consider adding a `;` to the last statement for consistent formatting: src/client.rs#L268
error: consider adding a `;` to the last statement for consistent formatting --> src/client.rs:268:13 | 268 | ingest_status = ingest_status + new_ingest_status | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: add a `;` here: `ingest_status = ingest_status + new_ingest_status;` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#semicolon_if_nothing_returned = note: `#[deny(clippy::semicolon_if_nothing_returned)]` implied by `#[deny(clippy::pedantic)]`
redundant closure: src/client.rs#L180
error: redundant closure --> src/client.rs:180:18 | 180 | .map(|s| s.to_string()); | ^^^^^^^^^^^^^^^^^ help: replace the closure with the method itself: `std::string::ToString::to_string` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_closure_for_method_calls
called `map(<f>).unwrap_or_else(<g>)` on an `Option` value: src/client.rs#L167
error: called `map(<f>).unwrap_or_else(<g>)` on an `Option` value --> src/client.rs:167:14 | 167 | &opts | ______________^ 168 | | .into() 169 | | .map(|opts| { serde_qs::to_string(&opts) }) 170 | | .unwrap_or_else(|| Ok(String::new()))? | |_____________________________________________________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#map_unwrap_or = note: `#[deny(clippy::map_unwrap_or)]` implied by `#[deny(clippy::pedantic)]` help: try | 167 ~ &opts 168 ~ .into().map_or_else(|| Ok(String::new()), |opts| { serde_qs::to_string(&opts) })? |
redundant closure: src/client.rs#L140
error: redundant closure --> src/client.rs:140:18 | 140 | .map(|s| s.to_string()); | ^^^^^^^^^^^^^^^^^ help: replace the closure with the method itself: `std::string::ToString::to_string` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_closure_for_method_calls = note: `#[deny(clippy::redundant_closure_for_method_calls)]` implied by `#[deny(clippy::pedantic)]`
variables can be used directly in the `format!` string: src/client.rs#L131
error: variables can be used directly in the `format!` string --> src/client.rs:131:20 | 131 | let path = format!("/v1/datasets/_apl?{}", query_params); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args = note: `#[deny(clippy::uninlined_format_args)]` implied by `#[deny(clippy::pedantic)]` help: change this to | 131 - let path = format!("/v1/datasets/_apl?{}", query_params); 131 + let path = format!("/v1/datasets/_apl?{query_params}"); |
this method could have a `#[must_use]` attribute: src/client.rs#L86
error: this method could have a `#[must_use]` attribute --> src/client.rs:86:5 | 86 | pub fn url(&self) -> &str { | ^^^^^^^^^^^^^^^^^^^^^^^^^ help: add the attribute: `#[must_use] pub fn url(&self) -> &str` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#must_use_candidate
this method could have a `#[must_use]` attribute: src/client.rs#L80
error: this method could have a `#[must_use]` attribute --> src/client.rs:80:5 | 80 | pub fn users(&self) -> &users::Client { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: add the attribute: `#[must_use] pub fn users(&self) -> &users::Client` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#must_use_candidate
this method could have a `#[must_use]` attribute: src/client.rs#L75
error: this method could have a `#[must_use]` attribute --> src/client.rs:75:5 | 75 | pub fn datasets(&self) -> &datasets::Client { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: add the attribute: `#[must_use] pub fn datasets(&self) -> &datasets::Client` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#must_use_candidate
this method could have a `#[must_use]` attribute: src/client.rs#L70
error: this method could have a `#[must_use]` attribute --> src/client.rs:70:5 | 70 | pub fn builder() -> Builder { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: add the attribute: `#[must_use] pub fn builder() -> Builder` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#must_use_candidate = note: `#[deny(clippy::must_use_candidate)]` implied by `#[deny(clippy::pedantic)]`
docs for function returning `Result` missing `# Errors` section: src/client.rs#L65
error: docs for function returning `Result` missing `# Errors` section --> src/client.rs:65:5 | 65 | pub fn new() -> Result<Self> { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#missing_errors_doc note: the lint level is defined here --> src/lib.rs:40:5 | 40 | clippy::pedantic, | ^^^^^^^^^^^^^^^^ = note: `#[deny(clippy::missing_errors_doc)]` implied by `#[deny(clippy::pedantic)]`
`mod.rs` files are not allowed, found `src/users/mod.rs`: src/users/mod.rs#L1
error: `mod.rs` files are not allowed, found `src/users/mod.rs` --> src/users/mod.rs:1:1 | 1 | //! Manage users and roles. | ^ | = help: move `src/users/mod.rs` to `src/users.rs` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#mod_module_files
`mod.rs` files are not allowed, found `src/datasets/mod.rs`: src/datasets/mod.rs#L1
error: `mod.rs` files are not allowed, found `src/datasets/mod.rs` --> src/datasets/mod.rs:1:1 | 1 | //! Manage datasets, ingest data and query it. | ^ | = help: move `src/datasets/mod.rs` to `src/datasets.rs` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#mod_module_files note: the lint level is defined here --> src/lib.rs:41:5 | 41 | clippy::mod_module_files | ^^^^^^^^^^^^^^^^^^^^^^^^
Clippy check
Clippy had exited with the 101 exit code
Rustfmt check
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions/cache@v3, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Rustfmt check
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
Rustfmt check
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/
Rustfmt check
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/
Rustfmt check
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/
Rustfmt check
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 check
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions/cache@v3, actions-rs/clippy-check@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Clippy check
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
Run tests with Tokio on development
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions/cache@v3, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Run tests with Tokio on development
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
Run tests with Tokio on development: examples/cli.rs#L76
use of deprecated method `axiom_rs::datasets::Client::info`: The info method will go away in the future, but come back in a different version.
Run tests with Tokio on development
`axiom-rs` (example "cli") generated 1 warning
Run tests with Tokio on development
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/
Run tests with Tokio on development
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/
Run tests with Tokio on development
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/
Run tests with Tokio on development
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 examples
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions/cache@v3, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Build examples
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
Build examples
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 examples
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 examples
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 examples
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 examples: examples/cli.rs#L76
use of deprecated method `axiom_rs::datasets::Client::info`: The info method will go away in the future, but come back in a different version.
Build examples
`axiom-rs` (example "cli") generated 1 warning
Run tests with Tokio on staging
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions/cache@v3, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Run tests with Tokio on staging
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
Run tests with Tokio on staging
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/
Run tests with Tokio on staging
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/
Run tests with Tokio on staging
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/
Run tests with Tokio on staging
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/
Run tests with Tokio on staging: examples/cli.rs#L76
use of deprecated method `axiom_rs::datasets::Client::info`: The info method will go away in the future, but come back in a different version.
Run tests with Tokio on staging
`axiom-rs` (example "cli") generated 1 warning
Run tests with async-std on development
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions/cache@v3, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Run tests with async-std on development
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
Run tests with async-std on development
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/
Run tests with async-std on development
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/
Run tests with async-std on development
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/
Run tests with async-std on development
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/
Run tests with async-std on development: examples/cli.rs#L76
use of deprecated method `axiom_rs::datasets::Client::info`: The info method will go away in the future, but come back in a different version.
Run tests with async-std on development
`axiom-rs` (example "cli") generated 1 warning
Run tests with async-std on staging
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions/cache@v3, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Run tests with async-std on staging
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
Run tests with async-std on staging: examples/cli.rs#L76
use of deprecated method `axiom_rs::datasets::Client::info`: The info method will go away in the future, but come back in a different version.
Run tests with async-std on staging
`axiom-rs` (example "cli") generated 1 warning
Run tests with async-std on staging
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/
Run tests with async-std on staging
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/
Run tests with async-std on staging
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/
Run tests with async-std on staging
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/