pub const BINARY: &str = "glab";Expand description
Name of the underlying CLI binary this crate drives.
Note on injection safety: most of the surface has no bare positional string
slot for a caller value — MR/issue ids are u64 (never flag-like), the
title/body/branch arguments ride in flag-VALUE positions (--title <t>,
--source-branch <b>) where glab consumes the next token verbatim, and
run/run_args are the caller-owns-the-argv escape hatch. The one exception
is release_view’s bare <tag> positional, which
is guarded with reject_flag_like (mirroring vcs-github’s
api/release_view); guard any future bare positional the same way.