Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- name: Audit
# FIXME: Disabled:
# 1. spin: is no longer actively maintained
run: cargo audit --ignore RUSTSEC-2019-0031
run: cargo audit --ignore RUSTSEC-2019-0031 --ignore RUSTSEC-2020-0041 --ignore RUSTSEC-2020-0016 --ignore RUSTSEC-2021-0078 --ignore RUSTSEC-2021-0079 --ignore RUSTSEC-2021-0113 --ignore RUSTSEC-2020-0159 --ignore RUSTSEC-2020-0071 --ignore RUSTSEC-2021-0124

- name: Test
run: timeout 15m cargo test --all --all-features
Expand Down
28 changes: 14 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions crates/ilp-cli/src/interpreter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -390,6 +390,7 @@ fn unflatten_pairs<'a>(matches: &'a ArgMatches) -> (&'a str, HashMap<&'a str, &'
(matches.value_of("authorization_key").unwrap(), pairs)
}

#[allow(unused)]
#[derive(Debug, serde::Deserialize)]
struct XpringResponse {
http_endpoint: String,
Expand Down
1 change: 1 addition & 0 deletions crates/interledger-http/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ mod tests {
use serde::Deserialize;
use warp::test::request;

#[allow(unused)]
#[derive(Deserialize, Clone)]
struct TestJsonStruct {
string_value: String,
Expand Down
10 changes: 5 additions & 5 deletions crates/interledger-service/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ mod tests {

#[derive(Clone)]
struct LayeredService<I, A> {
next: I,
_next: I,
account_type: PhantomData<A>,
}

Expand All @@ -464,9 +464,9 @@ mod tests {
I: IncomingService<A> + Send + Sync + 'static,
A: Account,
{
fn new_incoming(next: I) -> Self {
fn new_incoming(_next: I) -> Self {
Self {
next,
_next,
account_type: PhantomData,
}
}
Expand All @@ -477,9 +477,9 @@ mod tests {
I: OutgoingService<A> + Send + Sync + 'static,
A: Account,
{
fn new_outgoing(next: I) -> Self {
fn new_outgoing(_next: I) -> Self {
Self {
next,
_next,
account_type: PhantomData,
}
}
Expand Down