Files
codex/codex-rs/instructions/BUILD.bazel
Ahmed Ibrahim 1661767afb fix
2026-03-25 00:05:47 -07:00

17 lines
346 B
Python

load("//:defs.bzl", "codex_rust_crate")
codex_rust_crate(
name = "instructions",
crate_name = "codex_instructions",
compile_data = glob(
include = ["**"],
exclude = [
"BUILD.bazel",
"Cargo.toml",
],
allow_empty = True,
) + [
"//codex-rs:node-version.txt",
],
)