Skip to content
This repository was archived by the owner on Jun 7, 2025. It is now read-only.

Commit cb5eb9e

Browse files
Update env_logger requirement from 0.10 to 0.11
Updates the requirements on [env_logger](https://github.com/rust-cli/env_logger) to permit the latest version. - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](rust-cli/env_logger@v0.10.0...v0.11.1) --- updated-dependencies: - dependency-name: env_logger dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 86bc4d2 commit cb5eb9e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ egui = {git = "https://github.com/emilk/egui.git", branch="master"}
2424
# Winit integration with egui (turn off the clipboard feature)
2525
egui-winit = { git = "https://github.com/emilk/egui.git", branch="master", default-features = false, features = ["links", "wayland"] }
2626
# logging
27-
env_logger = { version = "0.10", default-features = false, features = ["auto-color", "humantime"] }
27+
env_logger = { version = "0.11", default-features = false, features = ["auto-color", "humantime"] }
2828
# Linear algebra library
2929
glam = "0.24"
3030
# gltf model loading

rend3-framework/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ wgpu = "0.19.0"
2727

2828
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
2929
# logging
30-
env_logger = { version = "0.10", default-features = false, features = ["auto-color", "humantime"] }
30+
env_logger = { version = "0.11", default-features = false, features = ["auto-color", "humantime"] }
3131
pollster = "0.3"
3232

3333
[target.'cfg(target_arch = "wasm32")'.dependencies]

rend3-test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ name = "rend3-tests"
1515

1616
[dependencies]
1717
anyhow = "1"
18-
env_logger = "0.10"
18+
env_logger = "0.11"
1919
flume = { version = "0.11", features = ["spin"] }
2020
glam = "0.24"
2121
image = { version = "0.24", default-features = false, features = ["png"] }

0 commit comments

Comments
 (0)