unzip 0.1.0

Library to decompress all (or some) files from a zipped archive.
Documentation
image: rust:latest

stages:
  - test
  - publish

test:
  stage: test
  script:
    - cargo test

publish:
  only:
    - tags
  stage: publish
  before_script:
    - cargo login "$CARGO_IO_KEY"
  script:
    - cargo package
    - cargo publish