Compare commits

...

4 commits

Author SHA1 Message Date
982bd2bc11 Update Rust crate serde_json to v1.0.149
Some checks failed
Build and Test / account (push) Failing after 12m12s
Build and Test / account (pull_request) Successful in 12m30s
2026-04-28 14:17:27 +00:00
6fa8757538 Update renovate.json
All checks were successful
Build and Test / account (push) Successful in 21m6s
2026-04-28 15:06:41 +02:00
bd6cb0fa6f Merge pull request 'Update Rust crate log to v0.4.29' (#8) from renovate/log-0.x-lockfile into main
Some checks are pending
Build and Test / account (push) Waiting to run
Reviewed-on: #8
2026-04-28 15:04:55 +02:00
6053db5241 Update Rust crate log to v0.4.29
Some checks failed
Build and Test / account (push) Failing after 11m9s
Build and Test / account (pull_request) Successful in 11m17s
2026-04-28 12:01:05 +00:00
2 changed files with 25 additions and 7 deletions

17
Cargo.lock generated
View file

@ -2098,9 +2098,9 @@ dependencies = [
[[package]]
name = "log"
version = "0.4.27"
version = "0.4.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
[[package]]
name = "loom"
@ -3327,14 +3327,15 @@ dependencies = [
[[package]]
name = "serde_json"
version = "1.0.140"
version = "1.0.149"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
dependencies = [
"itoa",
"memchr",
"ryu",
"serde",
"serde_core",
"zmij",
]
[[package]]
@ -4931,3 +4932,9 @@ dependencies = [
"quote",
"syn",
]
[[package]]
name = "zmij"
version = "1.0.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"

View file

@ -1,3 +1,14 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json"
}
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"packageRules": [
{
"matchUpdateTypes": ["minor", "patch"],
"automerge": true
},
{
"matchUpdateTypes": ["major"],
"automerge": false
}
]
}