aoc-core 0.1.2

Useful Advent of Code data structures, types and functions common to my Rust 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.93"
name = "aoc-core"
version = "0.1.2"
authors = ["Massimo Pavoni"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Useful Advent of Code data structures, types and functions common to my Rust solutions."
homepage = "https://codeberg.org/massimopavoni/aoc-core-rs"
documentation = "https://docs.rs/aoc-core"
readme = "README.md"
keywords = [
    "adventofcode",
    "aoc",
    "library",
    "toolbox",
    "utility",
]
license = "GPL-3.0-only"
repository = "https://codeberg.org/massimopavoni/aoc-core-rs"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
binary = ["aoc-core-macros"]
default = []

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

[dependencies.aoc-core-macros]
version = "0.1.0"
optional = true

[dependencies.derive_more]
version = "2.1.*"
features = [
    "add",
    "add_assign",
    "display",
]
default-features = false

[dependencies.grid]
version = "1.0.*"

[dependencies.itertools]
version = "0.14.*"

[dependencies.lexical-core]
version = "1.0.*"
features = ["parse-integers"]
default-features = false

[dependencies.rustc-hash]
version = "2.1.*"

[lints.clippy]
nursery = "warn"
pedantic = "warn"
unwrap_used = "warn"

[lints.rust]
unsafe_code = "forbid"