From 66554abfb9078d1fa8258a54b94f461da3df0e8c Mon Sep 17 00:00:00 2001 From: jif-oai Date: Fri, 6 Feb 2026 12:10:07 +0100 Subject: [PATCH] sec: fix version of `time` to prevent vulnerability (#10876) RUSTSEC-2026-0009 --- codex-rs/Cargo.lock | 8 ++++---- codex-rs/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/codex-rs/Cargo.lock b/codex-rs/Cargo.lock index 24f89c0c5..2d217ea06 100644 --- a/codex-rs/Cargo.lock +++ b/codex-rs/Cargo.lock @@ -8792,9 +8792,9 @@ dependencies = [ [[package]] name = "time" -version = "0.3.46" +version = "0.3.47" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9da98b7d9b7dad93488a84b8248efc35352b0b2657397d4167e7ad67e5d535e5" +checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c" dependencies = [ "deranged", "itoa", @@ -8815,9 +8815,9 @@ checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca" [[package]] name = "time-macros" -version = "0.2.26" +version = "0.2.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78cc610bac2dcee56805c99642447d4c5dbde4d01f752ffea0199aee1f601dc4" +checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215" dependencies = [ "num-conv", "time-core", diff --git a/codex-rs/Cargo.toml b/codex-rs/Cargo.toml index 39ebe5967..ec30bdcd2 100644 --- a/codex-rs/Cargo.toml +++ b/codex-rs/Cargo.toml @@ -221,7 +221,7 @@ tempfile = "3.23.0" test-log = "0.2.19" textwrap = "0.16.2" thiserror = "2.0.17" -time = "0.3" +time = "0.3.47" tiny_http = "0.12" tokio = "1" tokio-stream = "0.1.18"