common-range-tools 0.1.0

Library to find Common Range Intersections
Documentation
1
2
3
4
5
6
7
8
9
10
11
FROM mcr.microsoft.com/devcontainers/rust:2-1-trixie

RUN --mount=type=cache,target=/var/cache/apt \
    --mount=type=cache,target=/var/lib/apt \
    apt-get update && \
    apt-get install -y vim wget curl llvm

RUN cd /;curl -L https://git.io/misspell | bash
 
ENV PATH=/usr/local/go/bin:$PATH
CMD ["/bin/bash"]