fli 1.2.0

The commander.js like CLI Parser for rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
services:
  dev:
    build: .
    volumes:
      - .:/app  # Mount current directory to /app in the container
      - cargo-cache:/usr/local/cargo/registry  # Cache Rust dependencies
    working_dir: /app
    command: /bin/bash  # Keep the container running and allow interaction
    tty: true

volumes:
  cargo-cache: