Files
codex/codex-rs/plugin/BUILD.bazel
2026-06-22 18:34:28 +00:00

19 lines
386 B
Python

load("//:defs.bzl", "codex_rust_crate")
codex_rust_crate(
name = "plugin",
compile_data = glob(
include = ["**"],
allow_empty = True,
exclude = [
"**/* *",
"BUILD.bazel",
"Cargo.toml",
],
),
crate_name = "codex_plugin",
test_sizes = {
"plugin-unit-tests-windows-cross": "medium",
},
)