Skip to content

Add IPGEO to DFP rules endpoint (#58) #44

Add IPGEO to DFP rules endpoint (#58)

Add IPGEO to DFP rules endpoint (#58) #44

Triggered via push February 20, 2025 22:43
Status Failure
Total duration 1m 4s
Artifacts

auto-publish.yml

on: push
Publish to Crates.io
53s
Publish to Crates.io
Fit to window
Zoom out
Zoom in

Annotations

1 error and 8 warnings
Publish to Crates.io
Process completed with exit code 1.
doc list item missing indentation: src/consumer/fraud.rs#L95
warning: doc list item missing indentation --> src/consumer/fraud.rs:95:9 | 95 | /// privileged action to proceed | ^ | = help: if this is supposed to be its own paragraph, add a blank line = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation help: indent this line | 95 | /// privileged action to proceed | ++++
doc list item missing indentation: src/consumer/fraud.rs#L94
warning: doc list item missing indentation --> src/consumer/fraud.rs:94:9 | 94 | /// increased friction such as 2FA or other forms of extended user verification before allowing the | ^ | = help: if this is supposed to be its own paragraph, add a blank line = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation help: indent this line | 94 | /// increased friction such as 2FA or other forms of extended user verification before allowing the | ++++
doc list item missing indentation: src/consumer/fraud.rs#L92
warning: doc list item missing indentation --> src/consumer/fraud.rs:92:9 | 92 | /// from completing the privileged action in question | ^ | = help: if this is supposed to be its own paragraph, add a blank line = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation help: indent this line | 92 | /// from completing the privileged action in question | ++++
doc list item missing indentation: src/consumer/fraud.rs#L90
warning: doc list item missing indentation --> src/consumer/fraud.rs:90:9 | 90 | /// the characteristics of known/authentic traffic origins | ^ | = help: if this is supposed to be its own paragraph, add a blank line = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation help: indent this line | 90 | /// the characteristics of known/authentic traffic origins | ++++
doc list item missing indentation: src/consumer/fraud.rs#L89
warning: doc list item missing indentation --> src/consumer/fraud.rs:89:9 | 89 | /// listed set of known devices by Stytch. This grouping is made up of verified device profiles that match | ^ | = help: if this is supposed to be its own paragraph, add a blank line = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation help: indent this line | 89 | /// listed set of known devices by Stytch. This grouping is made up of verified device profiles that match | ++++
you are explicitly cloning with `.map()`: src/client.rs#L96
warning: you are explicitly cloning with `.map()` --> src/client.rs:96:9 | 96 | / self.jwks 97 | | .get_or_try_init(move || async move { 98 | | self.send::<_, Jwks>(crate::Request { 99 | | method: http::Method::GET, ... | 106 | | .await 107 | | .map(Jwks::clone) | |_____________________________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#map_clone = note: `#[warn(clippy::map_clone)]` on by default help: consider calling the dedicated `cloned` method | 96 ~ self.jwks 97 + .get_or_try_init(move || async move { 98 + self.send::<_, Jwks>(crate::Request { 99 + method: http::Method::GET, 100 + path: self.jwks_url.clone(), 101 + body: (), 102 + }) 103 + .await 104 + .map_err(|_| crate::Error::FetchJwks) 105 + }) 106 + .await.cloned() |
doc list item missing indentation: src/b2b/organizations.rs#L137
warning: doc list item missing indentation --> src/b2b/organizations.rs:137:9 | 137 | /// Member's primary email address and the old primary email address is retired. | ^^ | = help: if this is supposed to be its own paragraph, add a blank line = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation help: indent this line | 137 | /// Member's primary email address and the old primary email address is retired. | ++
doc list item missing indentation: src/b2b/organizations.rs#L136
warning: doc list item missing indentation --> src/b2b/organizations.rs:136:9 | 136 | /// address becomes the | ^ | = help: if this is supposed to be its own paragraph, add a blank line = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation = note: `#[warn(clippy::doc_lazy_continuation)]` on by default help: indent this line | 136 | /// address becomes the | ++++