aoc-runtime 0.6.0

a runtime automation tool for Advent of Code: scaffold, run and submit puzzle solutions
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.88"
name = "aoc-runtime"
version = "0.6.0"
authors = ["Antonio Subašić <antonio.subasic.public@gmail.com>"]
build = false
exclude = [
    ".github/",
    ".editorconfig",
    "deny.toml",
    "release-plz.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "a runtime automation tool for Advent of Code: scaffold, run and submit puzzle solutions"
homepage = "https://github.com/antoniosubasic/aoc-runtime"
readme = "README.md"
keywords = [
    "advent-of-code",
    "aoc",
    "cli",
    "automation",
]
categories = [
    "command-line-utilities",
    "development-tools",
]
license = "GPL-3.0-only"
repository = "https://github.com/antoniosubasic/aoc-runtime"

[lib]
name = "aoc_runtime"
path = "src/lib.rs"

[[bin]]
name = "aoc"
path = "src/main.rs"

[[test]]
name = "cli"
path = "tests/cli.rs"

[dependencies.aoc_api]
version = "4.1.0"

[dependencies.chrono]
version = "0.4.41"
features = ["clock"]
default-features = false

[dependencies.clap]
version = "4.5.41"
features = ["derive"]

[dependencies.colored]
version = "3.0.0"

[dependencies.dirs]
version = "6.0.0"

[dependencies.regex]
version = "1.11.1"

[dependencies.serde]
version = "1.0.219"
features = ["derive"]

[dependencies.serde_yaml_ng]
version = "0.10.0"

[dependencies.thiserror]
version = "2.0.12"

[dependencies.tokio]
version = "1.47.0"
features = ["rt"]

[dev-dependencies.assert_cmd]
version = "2.0"

[dev-dependencies.predicates]
version = "3.1"

[dev-dependencies.tempfile]
version = "3.20"

[lints.clippy]
expect_used = "deny"
panic = "deny"
unwrap_used = "deny"

[lints.clippy.all]
level = "deny"
priority = -1

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.rust]
missing_docs = "warn"
unreachable_pub = "warn"
unsafe_code = "forbid"

[profile.release]
lto = "thin"
codegen-units = 1
strip = "symbols"