1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-02-10 04:33:37 +02:00

cargo: bump the minor group with 2 updates (#2290)

Bumps the minor group with 2 updates:
[pulldown-cmark](https://github.com/raphlinus/pulldown-cmark) and
[googletest](https://github.com/google/googletest-rust).
This commit is contained in:
dependabot[bot] 2024-08-20 16:46:56 +01:00 committed by GitHub
parent aa0201ccfd
commit 3ecf12123b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 10 additions and 10 deletions

14
Cargo.lock generated
View File

@ -829,9 +829,9 @@ dependencies = [
[[package]]
name = "googletest"
version = "0.11.0"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee44a233e2e661240ef77ed5de92ea9ecf70d4832963a8582a6681e1517f3673"
checksum = "22e38fa267f4db1a2fa51795ea4234eaadc3617a97486a9f158de9256672260e"
dependencies = [
"googletest_macro",
"num-traits",
@ -841,9 +841,9 @@ dependencies = [
[[package]]
name = "googletest_macro"
version = "0.11.0"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed3057b7d1e628480193188ccb1a7850d034a3add3a350f4ed921b48e287ada9"
checksum = "171deab504ad43a9ea80324a3686a0cbe9436220d9d0b48ae4d7f7bd303b48a9"
dependencies = [
"quote",
"syn 2.0.48",
@ -1423,7 +1423,7 @@ dependencies = [
"log",
"mdbook",
"pretty_env_logger",
"pulldown-cmark 0.11.0",
"pulldown-cmark 0.12.0",
]
[[package]]
@ -1955,9 +1955,9 @@ dependencies = [
[[package]]
name = "pulldown-cmark"
version = "0.11.0"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8746739f11d39ce5ad5c2520a9b75285310dbfe78c541ccf832d38615765aec0"
checksum = "4d31cbfcd94884c3a67ec210c83efb06cb43674043458b0ad59f6947f8462c23"
dependencies = [
"bitflags 2.4.1",
"memchr",

View File

@ -12,4 +12,4 @@ anyhow = "1.0.86"
log = "0.4.22"
mdbook = "0.4.40"
pretty_env_logger = "0.5.0"
pulldown-cmark = { version = "0.11.0", default-features = false }
pulldown-cmark = { version = "0.12.0", default-features = false }

View File

@ -17,5 +17,5 @@ path = "mockall.rs"
test = true
[dependencies]
googletest = "0.11.0"
googletest = "0.12.0"
mockall = "0.13.0"

View File

@ -4,7 +4,7 @@ use googletest::prelude::*;
#[googletest::test]
fn test_elements_are() {
let value = vec!["foo", "bar", "baz"];
expect_that!(value, elements_are!(eq("foo"), lt("xyz"), starts_with("b")));
expect_that!(value, elements_are!(eq(&"foo"), lt(&"xyz"), starts_with("b")));
}
// ANCHOR_END: test_elements_are