seedgen 0.1.0

Zero-config database seed data generator with deterministic, constraint-safe fake data
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use tracing_subscriber::EnvFilter;

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    tracing_subscriber::fmt()
        .with_env_filter(
            EnvFilter::try_from_default_env().unwrap_or_else(|_| EnvFilter::new("info")),
        )
        .with_target(false)
        .init();

    seedgen::cli::run().await
}