Skip to content

Edition 2024 required #167

@GunnarBernsteinHH

Description

@GunnarBernsteinHH

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).

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions