nom-test-helpers 6.0.0

Macros to help with testing nom parsers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
build:
  script:
    - cargo build --verbose --release
    - cargo test -- verbose
  tags:
    - rust
pages:
  stage: deploy
  script:
    - cargo doc --verbose --no-deps
    - mkdir -p public/
    - cp -r target/doc/* public/
  artifacts:
    paths:
    - public
  only:
  - master