// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at https://mozilla.org/MPL/2.0/.
//! Minimal CLI wrapper so the library can run as a stand-alone proxy.
//!
//! Build it with `cargo build --release --bin foxy`
//! The binary honours FOXY_CONFIG_FILE or falls back to /etc/foxy/config.toml.
use env;
use Error;
use Foxy;
async