-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgraded to dimensional-1.3 and GHC 8.6.3
Signed-off-by: Paul Johnson <[email protected]>
- Loading branch information
1 parent
7ac6545
commit 2a6445d
Showing
3 changed files
with
72 additions
and
62 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
name: geodetics | ||
version: 0.0.6 | ||
version: 0.1.0 | ||
cabal-version: >= 1.10 | ||
build-type: Simple | ||
author: Paul Johnson <[email protected]> | ||
data-files: | ||
AddingProjections.txt, | ||
LICENSE, | ||
README.md, | ||
data-files: | ||
AddingProjections.txt, | ||
LICENSE, | ||
README.md, | ||
ToDo.txt | ||
license: BSD3 | ||
copyright: Paul Johnson 2015. | ||
|
@@ -15,28 +15,27 @@ description: Precise geographical coordinates (latitude & longitude), with co | |
different reference frames and projections. | ||
. | ||
Certain distinguished reference frames and grids are given distinct | ||
types so that coordinates expressed within them cannot be confused with | ||
types so that coordinates expressed within them cannot be confused with | ||
from coordinates in other frames. | ||
license-file: LICENSE | ||
maintainer: Paul Johnson <[email protected]> | ||
homepage: https://github.com/PaulJohnson/geodetics | ||
category: Geography | ||
tested-with: GHC==7.10.2 | ||
tested-with: GHC==8.6.3 | ||
|
||
source-repository head | ||
type: git | ||
location: https://github.com/PaulJohnson/geodetics | ||
|
||
library | ||
hs-source-dirs: src | ||
build-depends: | ||
base >= 4.7 && < 5, | ||
dimensional >= 1.0, | ||
array >= 0.4 | ||
if !impl(ghc>=8.0) | ||
build-depends: semigroups >= 0.9 && < 0.19 | ||
build-depends: | ||
base >= 4.7, | ||
dimensional >= 1.3, | ||
array >= 0.4, | ||
semigroups >= 0.9 | ||
ghc-options: -Wall | ||
exposed-modules: | ||
exposed-modules: | ||
Geodetics.Altitude, | ||
Geodetics.Ellipsoids, | ||
Geodetics.Geodetic, | ||
|
@@ -53,18 +52,18 @@ test-suite GeodeticTest | |
main-is: Main.hs | ||
x-uses-tf: true | ||
build-depends: geodetics, | ||
base >= 4.6 && < 5, | ||
base >= 4.6, | ||
HUnit >= 1.2, | ||
dimensional >= 0.13, | ||
dimensional >= 1.3, | ||
QuickCheck >= 2.4, | ||
test-framework >= 0.4.1, | ||
test-framework-quickcheck2, | ||
test-framework-hunit, | ||
array >= 0.4, | ||
checkers | ||
hs-source-dirs: | ||
hs-source-dirs: | ||
test | ||
ghc-options: -Wall -rtsopts | ||
other-modules: | ||
other-modules: | ||
ArbitraryInstances | ||
Default-Language: Haskell2010 |
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