Skip to content
Merged
Show file tree
Hide file tree
Changes from 9 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
6 changes: 4 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -588,14 +588,16 @@ jobs:
resource_class: << pipeline.parameters.medium >>
steps:
- checkout
# Use nightly until we bump the MSRV to 1.89.0 or greater
- install_rust_nightly
- setup_environment:
cache_key: v4.2.0-rust-1.88.0-cargo-audit-cache
- run:
name: Check for security vulnerabilities
no_output_timeout: 10m
command: |
cargo install cargo-audit@0.21.2 --locked
cargo audit -D warnings
cargo +nightly install cargo-audit@0.22.0 --locked
cargo +nightly audit -D warnings
- clear_environment:
cache_key: v4.2.0-rust-1.88.0-cargo-audit-cache

Expand Down
13 changes: 10 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,19 @@
wasm/Cargo.lock
**/build
**.history-*
**.ledger-*
**.current-proposal-cache-*
**.logs-*
validator-*
**.bft-storage-*/
**proptest-regressions/
**package-lock.json
**node_modules/
jwt_secret*.txt

# Files created by a running snarkOS node
**.ledger-*
**node-data-*

# Legacy files created by a running snarkOS node
**.current-proposal-cache-*
**cached_gateway_peers
**cached_router_peers
**.bft-storage-*/
Loading