cabal-version: 2.4 name: kewar version: 0.1.1.1 synopsis: CLI and library to generate QR codes. description: Generate QR codes from input string. Comes with CLI and as a library. category: Data, QR license: MIT license-file: LICENSE author: Manuel Spagnolo maintainer: Manuel Spagnolo copyright: 2022 Manuel Spagnolo build-type: Simple data-dir: data data-files: *.csv extra-doc-files: README.md CHANGELOG.md tested-with: GHC == 8.8.3 common common-options build-depends: array >= 0.5 && < 0.6, base >= 4.14 && < 4.15, containers >= 0.6 && < 0.7, split >= 0.2 && < 0.3, ghc-options: -Wall -Wcompat -Widentities -Wincomplete-uni-patterns -Wincomplete-record-updates if impl(ghc >= 8.0) ghc-options: -Wredundant-constraints if impl(ghc >= 8.2) ghc-options: -fhide-source-paths if impl(ghc >= 8.4) ghc-options: -Wmissing-export-lists -Wpartial-fields if impl(ghc >= 8.8) ghc-options: -Wmissing-deriving-strategies default-language: Haskell2010 common other-modules other-modules: Kewar.Encoding, Kewar.Encoding.Analysis, Kewar.Encoding.Data, Kewar.Encoding.Error, Kewar.Layout, Kewar.Layout.Constants, Kewar.Layout.Data, Kewar.Layout.FormatVersion, Kewar.Layout.FunctionalPatterns, Kewar.Layout.Interleaving, Kewar.Layout.Masking, Kewar.Layout.Types, Kewar.Constants, Kewar.Types, Paths_kewar, Utils autogen-modules: Paths_kewar library import: common-options, other-modules hs-source-dirs: src exposed-modules: Kewar executable kewar import: common-options hs-source-dirs: bin main-is: Kewar/CLI.hs other-modules: Kewar.CLI.Grid, Paths_kewar build-depends: kewar ghc-options: -threaded -rtsopts -with-rtsopts=-N test-suite kewar-test import: common-options, other-modules type: exitcode-stdio-1.0 hs-source-dirs: test, src main-is: Spec.hs other-modules: Test.Kewar.Encoding.Analysis, Test.Kewar.Encoding.Data, Test.Kewar.Layout.Masking build-depends: kewar, HUnit ghc-options: -threaded -rtsopts -with-rtsopts=-N