From 0b99346d0d64ddb73e966f76809e0d6f630888ff Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 29 Dec 2022 18:01:10 +0000 Subject: [PATCH] Update predicates requirement from 1.0.5 to 2.1.5 Updates the requirements on [predicates](https://github.com/assert-rs/predicates-rs) to permit the latest version. - [Release notes](https://github.com/assert-rs/predicates-rs/releases) - [Changelog](https://github.com/assert-rs/predicates-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/assert-rs/predicates-rs/compare/predicates-core-v1.0.5...v2.1.5) --- updated-dependencies: - dependency-name: predicates dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- server/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/Cargo.toml b/server/Cargo.toml index 6ddc635..eac3faf 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -21,7 +21,7 @@ serde_json = "1.0.57" # JSON support for Serde [dev-dependencies] assert_cmd = "1.0.1" # Run our binaries from the integration tests -predicates = "1.0.5" # Assert on binaries being run in the integration tests +predicates = "2.1.5" # Assert on binaries being run in the integration tests # When building for musl (ie. a static binary), we opt into the "vendored" # feature flag of openssl-sys which compiles libopenssl statically for us.