Skip to content

Commit

Permalink
Merge pull request #51 from asomers/audit
Browse files Browse the repository at this point in the history
Audit
  • Loading branch information
asomers authored Mar 20, 2022
2 parents b9fae41 + 4851fe7 commit 79d24ce
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ test_task:
RUSTDOCFLAGS: -D warnings
matrix:
- container:
image: rust:1.45.0
image: rust:1.49.0
- container:
image: rust:latest
- container:
Expand Down Expand Up @@ -32,6 +32,11 @@ test_task:
- if rustc --version | grep -q nightly; then
- cargo clippy --all-features --all-targets
- fi
audit_script:
- if rustc --version | grep -q nightly; then
- cargo install cargo-audit
- cargo audit
- fi
before_cache_script: rm -rf $CARGO_HOME/registry/index

codecov_task:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ tokio = { version = "1.0", features = ["rt"], optional = true }
[dev-dependencies]
futures = "0.3.1"
tokio = { version = "1.0", features = ["sync", "macros", "rt-multi-thread"] }
tokio-test = { version = "0.2.0" }
tokio-test = { version = "0.4.2" }

[[test]]
name = "functional"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ standard library. But instead of blocking until ready, they return Futures
which will become ready when the lock is acquired. See the doc comments for
individual examples.

`futures-locks` requires Rust 1.45.0 or higher.
`futures-locks` requires Rust 1.49.0 or higher.

# License

Expand Down

0 comments on commit 79d24ce

Please sign in to comment.