Skip to content

Commit

Permalink
Drop unused ghc-prim dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
basvandijk committed Aug 30, 2017
1 parent 20c80ae commit 4f5e9b9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
4 changes: 4 additions & 0 deletions changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
0.3.5.2
* Remove unused ghc-prim dependency.
* Added unit tests for read and scientificP

0.3.5.1
* Replace use of Vector from vector with Array from primitive.

Expand Down
3 changes: 1 addition & 2 deletions scientific.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: scientific
version: 0.3.5.1
version: 0.3.5.2
synopsis: Numbers represented using scientific notation
description:
@Data.Scientific@ provides the number type 'Scientific'. Scientific numbers are
Expand Down Expand Up @@ -67,7 +67,6 @@ library
other-extensions: DeriveDataTypeable, BangPatterns
ghc-options: -Wall
build-depends: base >= 4.3 && < 4.11
, ghc-prim
, integer-logarithms >= 1 && <1.1
, deepseq >= 1.3 && < 1.5
, text >= 0.8 && < 1.3
Expand Down
4 changes: 2 additions & 2 deletions scientific.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ mkDerivation, base, binary, bytestring, containers, deepseq, ghc-prim
{ mkDerivation, base, binary, bytestring, containers, deepseq
, hashable, integer-gmp, integer-logarithms, QuickCheck, smallcheck, stdenv, tasty
, tasty-ant-xml, tasty-hunit, tasty-quickcheck, tasty-smallcheck
, text, primitive, criterion
Expand All @@ -8,7 +8,7 @@ mkDerivation {
version = "HEAD";
src = ./.;
libraryHaskellDepends = [
base binary bytestring containers deepseq ghc-prim hashable integer-gmp
base binary bytestring containers deepseq hashable integer-gmp
integer-logarithms text primitive
];
testHaskellDepends = [
Expand Down

0 comments on commit 4f5e9b9

Please sign in to comment.