Skip to content
This repository has been archived by the owner on Jul 22, 2023. It is now read-only.

Commit

Permalink
Update Rust crate log to 0.4.19 (#1911)
Browse files Browse the repository at this point in the history
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [log](https://github.com/rust-lang/log) | dependencies | patch | `0.4.17` -> `0.4.19` |

---

### Release Notes

<details>
<summary>rust-lang/log</summary>

### [`v0.4.19`](https://github.com/rust-lang/log/blob/HEAD/CHANGELOG.md#&#8203;0419---2023-06-10)

[Compare Source](rust-lang/log@0.4.18...0.4.19)

-   Use target_has_atomic instead of the old atomic_cas cfg by [@&#8203;GuillaumeGomez](https://github.com/GuillaumeGomez) in rust-lang/log#555
-   Put MSRV into Cargo.toml by [@&#8203;est31](https://github.com/est31) in rust-lang/log#557

### [`v0.4.18`](https://github.com/rust-lang/log/blob/HEAD/CHANGELOG.md#&#8203;0418---2023-05-28)

[Compare Source](rust-lang/log@0.4.17...0.4.18)

-   fix markdown links (again) by [@&#8203;hellow554](https://github.com/hellow554) in rust-lang/log#513
-   add cargo doc to workflow by [@&#8203;hellow554](https://github.com/hellow554) in rust-lang/log#515
-   Apply Clippy lints by [@&#8203;hellow554](https://github.com/hellow554) in rust-lang/log#516
-   Replace ad-hoc eq_ignore_ascii_case with slice::eq_ignore_ascii_case by [@&#8203;glandium](https://github.com/glandium) in rust-lang/log#519
-   fix up windows targets by [@&#8203;KodrAus](https://github.com/KodrAus) in rust-lang/log#528
-   typo fix by [@&#8203;jiangying000](https://github.com/jiangying000) in rust-lang/log#529
-   Remove dependency on cfg_if by [@&#8203;EriKWDev](https://github.com/EriKWDev) in rust-lang/log#536
-   GitHub Workflows security hardening by [@&#8203;sashashura](https://github.com/sashashura) in rust-lang/log#538
-   Fix build status badge by [@&#8203;atouchet](https://github.com/atouchet) in rust-lang/log#539
-   Add call_logger to the documentation by [@&#8203;a1ecbr0wn](https://github.com/a1ecbr0wn) in rust-lang/log#547
-   Use stable internals for key-value API by [@&#8203;KodrAus](https://github.com/KodrAus) in rust-lang/log#550
-   Change wording of list of implementations by [@&#8203;Thomasdezeeuw](https://github.com/Thomasdezeeuw) in rust-lang/log#553
-   Add std-logger to list of implementations by [@&#8203;Thomasdezeeuw](https://github.com/Thomasdezeeuw) in rust-lang/log#554
-   Add `set_max_level_racy` and gate `set_max_level` by [@&#8203;djkoloski](https://github.com/djkoloski) in rust-lang/log#544
-   \[doc] src/lib.rs : prefix an unused variable with an underscore by [@&#8203;OccupyMars2025](https://github.com/OccupyMars2025) in rust-lang/log#561
-   \[doc] src/macros.rs :  correct  grammar errors of an example in lib documentation by [@&#8203;OccupyMars2025](https://github.com/OccupyMars2025) in rust-lang/log#562

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMDUuNSIsInVwZGF0ZWRJblZlciI6IjM1LjExNS4yIiwidGFyZ2V0QnJhbmNoIjoiZGV2ZWxvcCJ9-->

Co-authored-by: cabr2-bot <cabr2.help@gmail.com>
Reviewed-on: https://codeberg.org/Calciumdibromid/CaBr2/pulls/1911
Reviewed-by: crapStone <crapstone@noreply.codeberg.org>
Co-authored-by: Calciumdibromid Bot <cabr2_bot@noreply.codeberg.org>
Co-committed-by: Calciumdibromid Bot <cabr2_bot@noreply.codeberg.org>
  • Loading branch information
2 people authored and crapStone committed Jun 12, 2023
1 parent 95507f1 commit 0d2dd4e
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 23 deletions.
2 changes: 1 addition & 1 deletion crates/config/Cargo.toml
Expand Up @@ -13,7 +13,7 @@ edition = "2021"
base64 = "0.21.0"
directories-next = "2.0.0"
lazy_static = "1.4.0"
log = "0.4.17"
log = "0.4.19"
serde = { version = "1.0.162", features = ["derive"] }
serde_json = "1.0.96"
thiserror = "1.0.40"
Expand Down
2 changes: 1 addition & 1 deletion crates/load_save/Cargo.toml
Expand Up @@ -14,7 +14,7 @@ async-trait = "0.1.68"
chrono = { version = "0.4.24", default-features = false, optional = true }
handlebars = { version = "4.3.6", optional = true }
lazy_static = "1.4.0"
log = "0.4.17"
log = "0.4.19"
lopdf = { version = "0.30.0", optional = true }
quick-xml = { version = "0.28.2", features = ["serialize"], optional = true }
regex = { version = "1.8.1", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/logger/Cargo.toml
Expand Up @@ -12,7 +12,7 @@ edition = "2021"
[dependencies]
chrono = { version = "0.4.24", default-features = false }
fern = "0.6.2"
log = "0.4.17"
log = "0.4.19"

config = { path = "../config/" }
types = { path = "../types/" }
2 changes: 1 addition & 1 deletion crates/search/Cargo.toml
Expand Up @@ -16,7 +16,7 @@ chrono = { version = "0.4.24", default-feature = false }
env_logger = { version = "0.10.0", optional = true }
futures = { version = "0.3.28", optional = true }
lazy_static = "1.4.0"
log = "0.4.17"
log = "0.4.19"
quick-xml = { version = "0.28.2", optional = true, features = ["serialize"] }
regex = { version = "1.8.1", optional = true }
reqwest = { version = "0.11.17", features = ["deflate", "gzip", "json", "native-tls"], default-features = false, optional = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/types/Cargo.toml
Expand Up @@ -12,7 +12,7 @@ edition = "2018"
[dependencies]
cfg-if = { version = "1.0.0", optional = true }
chrono = { version = "0.4.24", features = ["serde"] }
log = "0.4.17"
log = "0.4.19"
serde = { version = "1.0.162", features = ["derive"] }
tokio = { version = "1.28.1", features = ["sync"], default-features = false, optional = true }

Expand Down
7 changes: 2 additions & 5 deletions frontend/src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion frontend/src-tauri/Cargo.toml
Expand Up @@ -17,7 +17,7 @@ build = "src/build.rs"
tauri-build = { version = "1.3.0", features = [] }

[dependencies]
log = "0.4.17"
log = "0.4.19"
serde_json = "1.0.96"
tauri = { version = "1.3.0", features = ["api-all"] }
tokio = { version = "1.28.1", features = ["macros", "rt-multi-thread"] }
Expand Down
7 changes: 2 additions & 5 deletions frontend/src-wasm/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion frontend/src-wasm/Cargo.toml
Expand Up @@ -18,7 +18,7 @@ chrono = { version = "0.4.24", features = ["wasmbind"] }
console_error_panic_hook = { version = "0.1.7", optional = true }
console_log = { version = "1.0.0", features = ["color"] }
js-sys = "=0.3.63"
log = "0.4.17"
log = "0.4.19"
serde = "1.0.162"
serde-wasm-bindgen = "0.5.0"
serde_json = "1.0.96"
Expand Down
7 changes: 2 additions & 5 deletions webserver/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion webserver/Cargo.toml
Expand Up @@ -13,7 +13,7 @@ repository = "https://codeberg.org/Calciumdibromid/CaBr2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
log = "0.4.17"
log = "0.4.19"
serde = { version = "1.0.162", features = ["derive"] }
tokio = { version = "1.28.1", features = ["macros", "rt-multi-thread"] }
uuid = { version = "1.3.3", features = ["v4"] }
Expand Down

0 comments on commit 0d2dd4e

Please sign in to comment.