From 828f21e112c01179c22c92431b9616cce5b55bc9 Mon Sep 17 00:00:00 2001 From: chrysn Date: Wed, 28 Aug 2024 16:05:07 +0200 Subject: [PATCH] dep: Remove time-macro pinning The current nightly supports the latest time-macros (by a long time). Not pinning again because more recent cargo versions can take care of rust-version metadata in crates. --- c2rust/Cargo.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/c2rust/Cargo.toml b/c2rust/Cargo.toml index 0288e0819d..31e6f6a185 100644 --- a/c2rust/Cargo.toml +++ b/c2rust/Cargo.toml @@ -26,8 +26,7 @@ log = "0.4" regex = "1.3" shlex = "1.3" c2rust-transpile = { version = "0.18.0", path = "../c2rust-transpile" } -# Required to avoid too-new version (dep of git-testament) which our rustc cannot compile -time-macros = "=0.2.6" +time-macros = "0.2.18" [build-dependencies] c2rust-build-paths = { path = "../c2rust-build-paths", version = "0.18.0" }