cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.34.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: 4eeb46332868b43860577b7f5d67c0b243c4bfed76ed462fc184d5da99771956
name: advent-of-code-ocr
version: 0.1.2.0
synopsis: Parse Advent of Code ASCII art letters
description: "OCR" letter recognition for <https://adventofcode.com Advent of Code>
puzzles, compatible with all puzzles from 2015 to 2019. Also comes with a
handy command line utility to parse the ASCII art directly from stdin.
category: Text
homepage: https://github.com/mstksg/advent-of-code-ocr#readme
bug-reports: https://github.com/mstksg/advent-of-code-ocr/issues
author: Justin Le
maintainer: justin@jle.im
copyright: 2020 Justin Le
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
CHANGELOG.md
source-repository head
type: git
location: https://github.com/mstksg/advent-of-code-ocr
library
exposed-modules:
Advent.OCR
Advent.OCR.Internal
other-modules:
Advent.OCR.LetterMap
hs-source-dirs:
src
ghc-options: -Wall -Werror=incomplete-patterns -Wredundant-constraints
build-depends:
base >=4.7 && <5
, containers
, data-default-class
, heredoc
, template-haskell
, th-lift
, th-lift-instances
default-language: Haskell2010
executable advent-of-code-ocr
main-is: ocr.hs
other-modules:
Paths_advent_of_code_ocr
hs-source-dirs:
app
ghc-options: -Wall -Werror=incomplete-patterns -Wredundant-constraints -threaded -rtsopts -with-rtsopts=-N
build-depends:
advent-of-code-ocr
, base >=4.7 && <5
, containers
, data-default-class
, heredoc
, optparse-applicative
, template-haskell
, th-lift
, th-lift-instances
default-language: Haskell2010
test-suite advent-of-code-ocr-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Paths_advent_of_code_ocr
hs-source-dirs:
test
ghc-options: -Wall -Werror=incomplete-patterns -Wredundant-constraints -threaded -rtsopts -with-rtsopts=-N
build-depends:
advent-of-code-ocr
, base >=4.7 && <5
, containers
, data-default-class
, heredoc
, hspec
, template-haskell
, th-lift
, th-lift-instances
default-language: Haskell2010
benchmark advent-of-code-ocr-bench
type: exitcode-stdio-1.0
main-is: bench.hs
other-modules:
Paths_advent_of_code_ocr
hs-source-dirs:
bench
ghc-options: -Wall -Werror=incomplete-patterns -Wredundant-constraints -threaded -rtsopts -with-rtsopts=-N -O2
build-depends:
advent-of-code-ocr
, base >=4.7 && <5
, containers
, criterion
, data-default-class
, heredoc
, template-haskell
, th-lift
, th-lift-instances
default-language: Haskell2010