From 4f4fbcf1fc4634d3ffb746fc05022f3db0edbb9f Mon Sep 17 00:00:00 2001 From: David Bittner Date: Fri, 26 Apr 2019 22:27:37 -0400 Subject: [PATCH] removing pages task --- .gitlab-ci.yml | 19 ------------------- Cargo.toml | 1 + 2 files changed, 1 insertion(+), 19 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a166b0e..3e9b095 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,7 +7,6 @@ before_script: stages: - build - test -- pages build: stage: build @@ -35,21 +34,3 @@ test: paths: - target - cargo_dir - -pages: - stage: docs - script: - - HERE="$(readlink -f .)" - - CARGO_HOME="$HERE/cargo_dir/" - - cargo doc --no-deps - - mv target/doc/ansi_parser public - - artifacts: - paths: - - public - - cache: - key: ansi-parse - paths: - - target - - cargo_dir diff --git a/Cargo.toml b/Cargo.toml index f2058f9..74ba1cc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,6 +8,7 @@ version = "0.2.0" license-file = "LICENSE" edition = "2018" + [dependencies] nom = "4.2.3" num-traits = "0.2"