Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix build on Rust 1.45.0 and up #654

Merged
merged 10 commits into from
Oct 9, 2020
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
10 changes: 6 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,11 @@ jobs:
cargo clippy --all-targets --all-features -- -D warnings
- run:
name: Audit Dependencies
# Disable:
# 1. http/hyper advisory: outdated http due to yup-oauth2 3.1.1, tungstenite 0.9.2
command: cargo audit --ignore RUSTSEC-2019-0033 --ignore RUSTSEC-2019-0034
# FIXME: Disabled:
# 1. spin: is no longer actively maintained
# 2. sized-chunks: no safe upgrade.
# 3. net2: has been removed from crates, still present as a dep to tokio
command: cargo audit --ignore RUSTSEC-2019-0031 --ignore RUSTSEC-2020-0041 --ignore RUSTSEC-2020-0016

test-md:
docker:
Expand All @@ -70,7 +72,7 @@ jobs:
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh | bash
export NVM_DIR="/home/circleci/.nvm"
source $NVM_DIR/nvm.sh
nvm install "v11.15.0"
nvm install "v12.18.4"

# install yarn & components (ganache-cli ilp-settlement-xrp conventional-changelog-cli)
curl -o- -L https://yarnpkg.com/install.sh | bash
Expand Down
Loading