diff options
Diffstat (limited to 'bruijn.cabal')
-rw-r--r-- | bruijn.cabal | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/bruijn.cabal b/bruijn.cabal index 22628ab..999d6ab 100644 --- a/bruijn.cabal +++ b/bruijn.cabal @@ -9,11 +9,10 @@ version: 0.1.0.0 description: Please see the README on GitHub at <https://github.com/githubuser/bruijn#readme> homepage: https://github.com/githubuser/bruijn#readme bug-reports: https://github.com/githubuser/bruijn/issues -author: Author name here -maintainer: example@example.com -copyright: 2022 Author name here -license: BSD3 -license-file: LICENSE +author: Marvin Borner +maintainer: develop@marvinborner.de +copyright: 2022 Marvin Borner +license: MIT build-type: Simple extra-source-files: README.md @@ -25,6 +24,7 @@ source-repository head library exposed-modules: + Binary Eval Helper Parser @@ -37,13 +37,15 @@ library LambdaCase build-depends: base >=4.7 && <5 + , bitstring + , bytestring , containers , haskeline , mtl , parsec default-language: Haskell2010 -executable bruijn-exe +executable bruijn main-is: Main.hs other-modules: Paths_bruijn @@ -54,7 +56,9 @@ executable bruijn-exe ghc-options: -threaded -rtsopts -with-rtsopts=-N build-depends: base >=4.7 && <5 + , bitstring , bruijn + , bytestring , containers , haskeline , mtl @@ -73,7 +77,9 @@ test-suite bruijn-test ghc-options: -threaded -rtsopts -with-rtsopts=-N build-depends: base >=4.7 && <5 + , bitstring , bruijn + , bytestring , containers , haskeline , mtl |