Skip to content

Commit cecfd6d

Browse files
committed
ci(node): disable some advisories and update README
1 parent 29c57b3 commit cecfd6d

File tree

2 files changed

+17
-5
lines changed

2 files changed

+17
-5
lines changed

.circleci/config.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,11 @@ jobs:
4444
cargo clippy --all-targets --all-features -- -D warnings
4545
- run:
4646
name: Audit Dependencies
47-
command: cargo audit
47+
# Disable:
48+
# 1. lazy_static advisory: https://github.com/interledger-rs/interledger-rs/issues/588
49+
# 2. http/hyper advisory: outdated http due to yup-oauth2 3.1.1, tungstenite 0.9.2
50+
command: cargo audit --ignore RUSTSEC-2019-0033 --ignore RUSTSEC-2019-0034 --ignore RUSTSEC-2019-0031
51+
4852
test-md:
4953
docker:
5054
- image: circleci/rust

README.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,16 @@
88
[![crates.io](https://img.shields.io/crates/v/interledger.svg)](https://crates.io/crates/interledger)
99
[![Interledger.rs Documentation](https://docs.rs/interledger/badge.svg)](https://docs.rs/interledger)
1010
[![CircleCI](https://circleci.com/gh/interledger-rs/interledger-rs.svg?style=shield)](https://circleci.com/gh/interledger-rs/interledger-rs)
11-
![Rust Version](https://img.shields.io/badge/rust-stable-Success)
12-
[![Docker Image](https://img.shields.io/docker/pulls/interledgerrs/node.svg?maxAge=2592000)](https://hub.docker.com/r/interledgerrs/node/)
11+
![rustc](https://img.shields.io/badge/rustc-1.39+-red.svg)
12+
![Rust](https://img.shields.io/badge/rust-stable-Success)
13+
[![Docker Image](https://img.shields.io/docker/pulls/interledgerrs/ilp-node.svg?maxAge=2592000)](https://hub.docker.com/r/interledgerrs/ilp-node/)
14+
15+
## Requirements
16+
17+
All crates require Rust 2018 edition and are tested on the following channels:
18+
19+
- `1.39.0` (minimum supported)
20+
- `stable`
1321

1422
## Connecting to the Testnet
1523

@@ -34,7 +42,7 @@ To run the Interledger.rs components by themselves (rather than the `testnet-bun
3442
#### Install
3543

3644
```bash #
37-
docker pull interledgerrs/node
45+
docker pull interledgerrs/ilp-node
3846
docker pull interledgerrs/ilp-cli
3947
docker pull interledgerrs/ilp-settlement-ethereum
4048
```
@@ -43,7 +51,7 @@ docker pull interledgerrs/ilp-settlement-ethereum
4351

4452
```bash #
4553
# This runs the sender / receiver / router bundle
46-
docker run -it interledgerrs/node
54+
docker run -it interledgerrs/ilp-node
4755

4856
# This is a simple CLI for interacting with the node's HTTP API
4957
docker run -it --rm interledgerrs/ilp-cli

0 commit comments

Comments
 (0)