1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// SPDX-License-Identifier: LGPL-2.1-or-later // Copyright (c) 2026 Jarkko Sakkinen #![deny(clippy::all)] #![deny(clippy::pedantic)] #![deny(clippy::unwrap_used)] #![deny(clippy::expect_used)] #![deny(clippy::panic)] mod cli; mod engine; fn main() { cli::execute(); }