2026-02-10 13:42:17 +00:00
|
|
|
load("//:defs.bzl", "codex_rust_crate")
|
|
|
|
|
|
2026-03-09 21:11:31 -07:00
|
|
|
SCHEMA_FIXTURES = glob(["schema/generated/*.json"], allow_empty = False)
|
|
|
|
|
|
2026-02-10 13:42:17 +00:00
|
|
|
codex_rust_crate(
|
|
|
|
|
name = "hooks",
|
|
|
|
|
crate_name = "codex_hooks",
|
2026-03-09 21:11:31 -07:00
|
|
|
compile_data = SCHEMA_FIXTURES,
|
|
|
|
|
integration_compile_data_extra = SCHEMA_FIXTURES,
|
|
|
|
|
test_data_extra = SCHEMA_FIXTURES,
|
2026-02-10 13:42:17 +00:00
|
|
|
)
|