-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9b61e4f
commit 496d974
Showing
5 changed files
with
31 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ License-file: LICENSE | |
Author: The DPH Team | ||
Maintainer: Ben Lippmeier <[email protected]> | ||
Build-Type: Simple | ||
Cabal-Version: >=1.6 | ||
Cabal-Version: >=1.10 | ||
Stability: experimental | ||
Category: Data Structures | ||
Homepage: http://repa.ouroborus.net | ||
|
@@ -25,7 +25,7 @@ Flag llvm | |
|
||
Executable repa-canny | ||
Build-depends: | ||
base >= 4.8 && < 4.17 | ||
base >= 4.8 && < 4.21 | ||
, repa >= 3.4 && < 3.5 | ||
, repa-algorithms >= 3.4 && < 3.5 | ||
|
||
|
@@ -46,7 +46,7 @@ Executable repa-canny | |
|
||
Executable repa-mmult | ||
Build-depends: | ||
base >= 4.8 && < 4.17 | ||
base >= 4.8 && < 4.21 | ||
, random == 1.1.* | ||
, repa >= 3.4 && < 3.5 | ||
, repa-algorithms >= 3.4 && < 3.5 | ||
|
@@ -72,7 +72,7 @@ Executable repa-mmult | |
|
||
Executable repa-laplace | ||
Build-depends: | ||
base >= 4.8 && < 4.17 | ||
base >= 4.8 && < 4.21 | ||
, repa >= 3.4 && < 3.5 | ||
, repa-io >= 3.4 && < 3.5 | ||
, template-haskell | ||
|
@@ -95,7 +95,7 @@ Executable repa-laplace | |
|
||
Executable repa-fft2d | ||
Build-depends: | ||
base >= 4.8 && < 4.17 | ||
base >= 4.8 && < 4.21 | ||
, repa >= 3.4 && < 3.5 | ||
, repa-algorithms >= 3.4 && < 3.5 | ||
, repa-io >= 3.4 && < 3.5 | ||
|
@@ -119,7 +119,7 @@ Executable repa-fft2d | |
|
||
Executable repa-fft2d-highpass | ||
Build-depends: | ||
base >= 4.8 && < 4.17 | ||
base >= 4.8 && < 4.21 | ||
, repa >= 3.4 && < 3.5 | ||
, repa-algorithms >= 3.4 && < 3.5 | ||
, repa-io >= 3.4 && < 3.5 | ||
|
@@ -143,7 +143,7 @@ Executable repa-fft2d-highpass | |
|
||
Executable repa-fft3d-highpass | ||
Build-depends: | ||
base >= 4.8 && < 4.17 | ||
base >= 4.8 && < 4.21 | ||
, repa >= 3.4 && < 3.5 | ||
, repa-algorithms >= 3.4 && < 3.5 | ||
|
||
|
@@ -166,10 +166,10 @@ Executable repa-fft3d-highpass | |
|
||
Executable repa-blur | ||
Build-depends: | ||
base >= 4.8 && < 4.17 | ||
base >= 4.8 && < 4.21 | ||
, repa >= 3.4 && < 3.5 | ||
, repa-algorithms >= 3.4 && < 3.5 | ||
, vector >= 0.11 && < 0.13 | ||
, vector >= 0.11 && < 0.14 | ||
|
||
Main-is: examples/Blur/src-repa/Main.hs | ||
hs-source-dirs: examples/Blur/src-repa . | ||
|
@@ -190,7 +190,7 @@ Executable repa-blur | |
|
||
Executable repa-sobel | ||
Build-depends: | ||
base >= 4.8 && < 4.17 | ||
base >= 4.8 && < 4.21 | ||
, repa >= 3.4 && < 3.5 | ||
, repa-algorithms >= 3.4 && < 3.5 | ||
|
||
|
@@ -214,7 +214,7 @@ Executable repa-sobel | |
|
||
Executable repa-volume | ||
Build-depends: | ||
base >= 4.8 && < 4.17 | ||
base >= 4.8 && < 4.21 | ||
, repa >= 3.4 && < 3.5 | ||
, repa-io >= 3.4 && < 3.5 | ||
|
||
|
@@ -236,7 +236,7 @@ Executable repa-volume | |
|
||
Executable repa-unit-test | ||
Build-depends: | ||
base >= 4.8 && < 4.17 | ||
base >= 4.8 && < 4.21 | ||
, repa >= 3.4 && < 3.5 | ||
, QuickCheck >= 2.8 && < 2.16 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ License-file: LICENSE | |
Author: The DPH Team | ||
Maintainer: Ben Lippmeier <[email protected]> | ||
Build-Type: Simple | ||
Cabal-Version: >=1.6 | ||
Cabal-Version: >=1.10 | ||
Stability: experimental | ||
Category: Data Structures | ||
Homepage: http://repa.ouroborus.net | ||
|
@@ -25,11 +25,11 @@ Flag no-template-haskell | |
|
||
Library | ||
Build-Depends: | ||
base >= 4.8 && < 4.17 | ||
base >= 4.8 && < 4.21 | ||
, template-haskell | ||
, ghc-prim | ||
, vector >= 0.11 && < 0.13 | ||
, bytestring >= 0.10 && < 0.12 | ||
, vector >= 0.11 && < 0.14 | ||
, bytestring >= 0.10 && < 0.13 | ||
, QuickCheck >= 2.8 && < 2.16 | ||
|
||
ghc-options: | ||
|