mirror of
https://github.com/openai/codex.git
synced 2026-09-16 12:13:30 +00:00
17 lines
475 B
Python
17 lines
475 B
Python
load("@rules_rust//rust:defs.bzl", "rust_binary")
|
|
|
|
rust_binary(
|
|
name = "windows-exec-server",
|
|
testonly = True,
|
|
srcs = ["windows_exec_server.rs"],
|
|
crate_name = "windows_exec_server",
|
|
crate_root = "windows_exec_server.rs",
|
|
tags = ["manual"],
|
|
target_compatible_with = ["@platforms//os:windows"],
|
|
visibility = ["//codex-rs/core/tests/remote_env_windows:__pkg__"],
|
|
deps = [
|
|
"//codex-rs/exec-server",
|
|
"@crates//:tokio",
|
|
],
|
|
)
|