From 34a0e2ac24bc0b2ac7d98124e54eb2a2d1635d83 Mon Sep 17 00:00:00 2001 From: Jan Tuomi Date: Thu, 8 Dec 2022 13:21:58 +0200 Subject: Add correct data to project files --- milch.cabal | 90 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 milch.cabal (limited to 'milch.cabal') diff --git a/milch.cabal b/milch.cabal new file mode 100644 index 0000000..acfcb59 --- /dev/null +++ b/milch.cabal @@ -0,0 +1,90 @@ +cabal-version: 1.12 + +-- This file has been generated from package.yaml by hpack version 0.34.4. +-- +-- see: https://github.com/sol/hpack + +name: milch +version: 0.1.0.0 +description: Please see the README on GitHub at +homepage: https://github.com/jantuomi/milch#readme +bug-reports: https://github.com/jantuomi/milch/issues +author: Jan Tuomi +maintainer: jans.tuomi@gmail.com +copyright: 2022 Jan Tuomi +license: MIT +license-file: LICENSE +build-type: Simple +extra-source-files: + README.md + TODO.txt + +source-repository head + type: git + location: https://github.com/jantuomi/milch + +library + exposed-modules: + Builtins + Interpreter + Parser + Tokenizer + Utils + other-modules: + Paths_milch + hs-source-dirs: + src + ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints -O2 + build-depends: + HUnit ==1.6.2.0 + , base >=4.7 && <5 + , containers + , farmhash ==0.1.0.5 + , haskeline ==0.8.2 + , mtl + , regex-tdfa ==1.3.2 + , text + , utf8-string ==1.0.2 + default-language: Haskell2010 + +executable milch + main-is: Main.hs + other-modules: + Paths_milch + hs-source-dirs: + app + ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints -O2 -threaded -rtsopts -with-rtsopts=-N + build-depends: + HUnit ==1.6.2.0 + , base >=4.7 && <5 + , containers + , farmhash ==0.1.0.5 + , haskeline ==0.8.2 + , milch + , mtl + , regex-tdfa ==1.3.2 + , text + , utf8-string ==1.0.2 + default-language: Haskell2010 + +test-suite milch-test + type: exitcode-stdio-1.0 + main-is: Spec.hs + other-modules: + TestUtils + Paths_milch + hs-source-dirs: + test + ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints -O2 -threaded -rtsopts -with-rtsopts=-N + build-depends: + HUnit ==1.6.2.0 + , base >=4.7 && <5 + , containers + , farmhash ==0.1.0.5 + , haskeline ==0.8.2 + , milch + , mtl + , regex-tdfa ==1.3.2 + , text + , utf8-string ==1.0.2 + default-language: Haskell2010 -- cgit v1.3