From: Michael Orlitzky Date: Sun, 3 Feb 2013 02:34:00 +0000 (-0500) Subject: Remove unused dependencies. X-Git-Url: http://gitweb.michael.orlitzky.com/?p=numerical-analysis.git;a=commitdiff_plain;h=764b157fb65e4973a6830530e88dd1055a6da718 Remove unused dependencies. Set looser base version bounds. Expose (and thus compile) more modules. --- diff --git a/numerical-analysis.cabal b/numerical-analysis.cabal index 5076a92..0e6412a 100644 --- a/numerical-analysis.cabal +++ b/numerical-analysis.cabal @@ -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.*