Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[chore] Bump env_logger #850

Merged
merged 1 commit into from
Mar 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ members = [

[workspace.dependencies]
# dev dependencies
env_logger = "0.11"
pretty_assertions = "1.3.0"

[workspace.metadata.release]
Expand Down
2 changes: 1 addition & 1 deletion font-codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ toml = "0.7.5"
serde = {version = "1.0", features = ["derive"] }
xflags = "0.3.0"
log = "0.4"
env_logger = "0.10.0"
rayon = "1.5.3"
indexmap = "2.0"
env_logger.workspace = true

# cargo-release settings
[package.metadata.release]
Expand Down
5 changes: 3 additions & 2 deletions write-fonts/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ font-test-data = { path = "../font-test-data" }
read-fonts = { version = "0.17.0", path = "../read-fonts", features = [
"codegen_test",
] }
env_logger = "0.10.0"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This seems like it should move to the workspace toml?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍 good idea

rstest = "0.18.0"
pretty_assertions.workspace = true
bincode = "1.0"

pretty_assertions.workspace = true
env_logger.workspace = true
Loading