mirror of
https://github.com/openai/codex.git
synced 2026-04-30 01:16:54 +00:00
16 lines
307 B
Python
16 lines
307 B
Python
load("//:defs.bzl", "codex_rust_crate")
|
|
|
|
codex_rust_crate(
|
|
name = "plugin",
|
|
crate_name = "codex_plugin",
|
|
compile_data = glob(
|
|
include = ["**"],
|
|
exclude = [
|
|
"**/* *",
|
|
"BUILD.bazel",
|
|
"Cargo.toml",
|
|
],
|
|
allow_empty = True,
|
|
),
|
|
)
|