From 5a4e9d0293fe940dd71de29b2ac12044c3f1bde2 Mon Sep 17 00:00:00 2001 From: Cooper Gamble Date: Wed, 3 Jun 2026 04:01:02 +0000 Subject: [PATCH] [codex-http-state] add Bazel crate target [ci changed_files] --- codex-rs/Cargo.toml | 1 - codex-rs/http-state/BUILD.bazel | 6 ++++++ codex-rs/http-state/Cargo.toml | 3 +++ 3 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 codex-rs/http-state/BUILD.bazel diff --git a/codex-rs/Cargo.toml b/codex-rs/Cargo.toml index 47efdbe279..1a103ae074 100644 --- a/codex-rs/Cargo.toml +++ b/codex-rs/Cargo.toml @@ -178,7 +178,6 @@ codex-file-search = { path = "file-search" } codex-file-watcher = { path = "file-watcher" } codex-git-utils = { path = "git-utils" } codex-hooks = { path = "hooks" } -codex-http-state = { path = "http-state" } codex-keyring-store = { path = "keyring-store" } codex-linux-sandbox = { path = "linux-sandbox" } codex-lmstudio = { path = "lmstudio" } diff --git a/codex-rs/http-state/BUILD.bazel b/codex-rs/http-state/BUILD.bazel new file mode 100644 index 0000000000..acd781b727 --- /dev/null +++ b/codex-rs/http-state/BUILD.bazel @@ -0,0 +1,6 @@ +load("//:defs.bzl", "codex_rust_crate") + +codex_rust_crate( + name = "http-state", + crate_name = "codex_http_state", +) diff --git a/codex-rs/http-state/Cargo.toml b/codex-rs/http-state/Cargo.toml index 2c240904a2..401b2ccc3b 100644 --- a/codex-rs/http-state/Cargo.toml +++ b/codex-rs/http-state/Cargo.toml @@ -4,6 +4,9 @@ license.workspace = true name = "codex-http-state" version.workspace = true +[lib] +doctest = false + [dependencies] codex-utils-path = { workspace = true } serde = { workspace = true, features = ["derive"] }