[codex-http-state] add Bazel crate target [ci changed_files]

This commit is contained in:
Cooper Gamble
2026-06-03 04:01:02 +00:00
parent 475734ea2e
commit 5a4e9d0293
3 changed files with 9 additions and 1 deletions

View File

@@ -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" }

View File

@@ -0,0 +1,6 @@
load("//:defs.bzl", "codex_rust_crate")
codex_rust_crate(
name = "http-state",
crate_name = "codex_http_state",
)

View File

@@ -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"] }