tomldir 0.1.7

Lean TOML loader with runtime dot-path access and flattening into maps, optimized for tools and dynamic configs
Documentation
CARGO := "cargo +nightly"

default: fmt lint test

build:
    {{ CARGO }} build

test:
    {{ CARGO }} test

lint:
    {{ CARGO }} clippy -- -D warnings

fmt:
    {{ CARGO }} fmt

clean:
    {{ CARGO }} clean

check:
    {{ CARGO }} check

example:
    {{ CARGO }} run --example gitlab_demo

release:
    {{ CARGO }} publish --dry-run

doc:
    {{ CARGO }} doc --no-deps --open