kmp 0.1.1

Various functions using the Knuth–Morris–Pratt algorithm to efficiently find patterns.
Documentation
.pages:
  stage: deploy
  only:
    - tags
    - /^[0-9]+-.*$/
  script:
    - cargo doc --no-deps
    - rm -rf public
    - mkdir public
    - mv target/doc/* public
    - echo '<meta http-equiv="refresh" content="0; url=./kmp">' > public/index.html
  dependencies: []
  artifacts:
    paths:
      - public

publish:
  stage: deploy
  only:
    - tags
    - /^[0-9]+-.*$/
  script:
    - cargo publish --locked --verbose --token $CARGO_REGISTRY_TOKEN
  dependencies: []