mirror of
https://github.com/openai/codex.git
synced 2026-04-24 14:45:27 +00:00
Move capability-owned apps, plugins, and skills logic into a new workspace crate and keep codex-core as the integration layer. Co-authored-by: Codex <noreply@openai.com>
16 lines
319 B
Python
16 lines
319 B
Python
load("//:defs.bzl", "codex_rust_crate")
|
|
|
|
codex_rust_crate(
|
|
name = "capabilities",
|
|
crate_name = "codex_capabilities",
|
|
compile_data = glob(
|
|
include = ["**"],
|
|
exclude = [
|
|
"**/* *",
|
|
"BUILD.bazel",
|
|
"Cargo.toml",
|
|
],
|
|
allow_empty = True,
|
|
),
|
|
)
|