]> gitweb.michael.orlitzky.com - numerical-analysis.git/commitdiff
Remove unused dependencies.
authorMichael Orlitzky <michael@orlitzky.com>
Sun, 3 Feb 2013 02:34:00 +0000 (21:34 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Sun, 3 Feb 2013 02:34:00 +0000 (21:34 -0500)
Set looser base version bounds.
Expose (and thus compile) more modules.

numerical-analysis.cabal

index 5076a920916af9d908c26ba5bc7e1d93ee304d34..0e6412a585415c3d2a7d4134b02595d3c5707e82 100644 (file)
@@ -16,17 +16,12 @@ description:
 data-files: makefile
 
 library
-  exposed-modules: Roots.Simple, Roots.Fast
+  exposed-modules: Integration.Simpson, Integration.Trapezoid,
+    Misc, ODE.IVP, Roots.Simple, Roots.Fast
 
   build-depends:
-    base                        == 4.6.*,
-    numbers                     == 3000.1.*,
-    -- Test deps
-    HUnit                       == 1.2.*,
-    QuickCheck                  == 2.*,
-    test-framework              == 0.6.*,
-    test-framework-hunit        == 0.2.*,
-    test-framework-quickcheck2  == 0.2.*
+    base                        >= 3 && < 5,
+    numbers                     == 3000.1.*
 
   hs-source-dirs:
     src/
@@ -54,8 +49,7 @@ test-suite doctests
   hs-source-dirs: test
   main-is: Doctests.hs
   build-depends:
-    base      == 4.6.*,
-    numbers   == 3000.1.*,
+    base      >= 3 && < 5,
     -- Additional test dependencies.
     doctest   == 0.9.*,
     filemanip == 0.3.6.*