1//! Binary entry point for xtask. 2//! 3//! This is a thin wrapper around the library crate. The main logic lives in 4//! [`xtask_lib`] (the library target). 5 6use xtask_lib::run; 7 8fn main() -> anyhow::Result<()> { 9 run() 10}