-
Notifications
You must be signed in to change notification settings - Fork 73
Open
Description
Problem: Simplelog now requires Edition 2024 to compile. This is an issue when using older versions of Rust.
Expectation: Edition 2018 required as of crate meta data.
The problem is this dependency:
time = { version = "0.3.36", features = ["formatting", "macros"] }
which tells cargo to use 0.3.newest.
it needs to be changed to
time = { version = "=0.3.36", features = ["formatting", "macros"] }
(notice the extra '=' sign).
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels