goosedump 0.12.42

Browse, search, compact, and learn from coding-agent sessions
// SPDX-License-Identifier: LGPL-2.1-or-later
// Copyright (C) Jarkko Sakkinen 2026

#![deny(warnings)]
#![deny(clippy::all, clippy::pedantic)]
#![deny(
    clippy::expect_used,
    clippy::panic,
    clippy::todo,
    clippy::unimplemented,
    clippy::unreachable,
    clippy::unwrap_used
)]

#[cfg(feature = "bench")]
mod alloc_profile;
mod cli;
mod engine;

fn main() {
    cli::run();
}