parse_duration0 3.0.0

Parses a duration from a string. Fork with security fix.
Documentation

FROM mverleg/rust_nightly_musl_base:deps_2022-07-01_32
# Copy the code (all except .dockerignore).
COPY ./ ./

# Build (for test)
RUN find . -name target -prune -o -type f &&\
    touch -c build.rs src/main.rs src/lib.rs &&\
    cargo build --all-features --tests --offline

# Test
RUN cargo --offline test --all-features

# Lint
RUN cargo --offline clippy --all-features --tests -- -D warnings

# Style
RUN cargo --offline fmt --all -- --check