From e7631d6561538e35eafb50ffb86066b97cbc0070 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Grave Date: Fri, 1 Mar 2019 12:31:55 +0000 Subject: Add missing modules to cabal --- verifuzz.cabal | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/verifuzz.cabal b/verifuzz.cabal index c9e64be..abbd4f9 100644 --- a/verifuzz.cabal +++ b/verifuzz.cabal @@ -20,25 +20,26 @@ extra-source-files: README.md library hs-source-dirs: src default-language: Haskell2010 - ghc-options: -Wall -Werror - other-modules: VeriFuzz.Internal - , VeriFuzz.Internal.Circuit - , VeriFuzz.Internal.Simulator - , VeriFuzz.Internal.AST + ghc-options: -Wall -Werror -Wwarn=unused-imports exposed-modules: VeriFuzz - , VeriFuzz.ASTGen , VeriFuzz.AST + , VeriFuzz.Internal + , VeriFuzz.Internal.AST + , VeriFuzz.Internal.Circuit + , VeriFuzz.Internal.Simulator + , VeriFuzz.Internal.Template + , VeriFuzz.ASTGen , VeriFuzz.Circuit , VeriFuzz.CodeGen , VeriFuzz.Env - , VeriFuzz.General , VeriFuzz.Gen , VeriFuzz.Icarus , VeriFuzz.Lexer , VeriFuzz.Mutate , VeriFuzz.Parser - , VeriFuzz.RandomAlt , VeriFuzz.Random + , VeriFuzz.RandomAlt + , VeriFuzz.Reduce , VeriFuzz.XST , VeriFuzz.Yosys build-depends: base >=4.7 && <5 @@ -53,7 +54,6 @@ library , text >=1.2 && <1.3 , bytestring >=0.10 && <0.11 , hashable >=1.2 && <1.3 - , transformers >=0.5 && <0.6 , filepath >=1.4.2 && <1.5 , binary >= 0.8.6 && <0.9 , cryptonite >=0.25 && <0.26 -- cgit