From cad8482bd4cdce6db263dc6733a975c6eb70c3eb Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Fri, 1 Aug 2025 16:25:03 +0200 Subject: [PATCH 1/2] dmesg: use parse_datetime from workspace --- src/uu/dmesg/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uu/dmesg/Cargo.toml b/src/uu/dmesg/Cargo.toml index 75536aa..10ef636 100644 --- a/src/uu/dmesg/Cargo.toml +++ b/src/uu/dmesg/Cargo.toml @@ -17,7 +17,7 @@ regex = { workspace = true } serde_json = { workspace = true } serde = { workspace = true } chrono = "0.4.38" -parse_datetime = "0.11.0" +parse_datetime = { workspace = true } [features] fixed-boot-time = [] From 40ba3e9caa6d4dd391740d83b53c3dc1d02cc3b5 Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Fri, 1 Aug 2025 16:26:55 +0200 Subject: [PATCH 2/2] dmesg: sort deps in Cargo.toml alphabetically --- src/uu/dmesg/Cargo.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/uu/dmesg/Cargo.toml b/src/uu/dmesg/Cargo.toml index 10ef636..44773d9 100644 --- a/src/uu/dmesg/Cargo.toml +++ b/src/uu/dmesg/Cargo.toml @@ -11,13 +11,13 @@ name = "dmesg" path = "src/main.rs" [dependencies] -clap = { workspace = true } -uucore = { workspace = true } -regex = { workspace = true } -serde_json = { workspace = true } -serde = { workspace = true } chrono = "0.4.38" +clap = { workspace = true } parse_datetime = { workspace = true } +regex = { workspace = true } +serde = { workspace = true } +serde_json = { workspace = true } +uucore = { workspace = true } [features] fixed-boot-time = []