Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions JuicyPixels-blurhash.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ cabal-version: 1.18
--
-- see: https://github.com/sol/hpack
--
-- hash: a13880b312d8089d0e3453ae123657a79882566e6890922feefabd771a386139
-- hash: f33aac24ad8dbfbd6bdefa22bf09c03d3733e952788699cec841d596525724a9

name: JuicyPixels-blurhash
version: 0.1.0.3
Expand Down Expand Up @@ -48,7 +48,7 @@ library
build-depends:
JuicyPixels >=3.2.8 && <3.4
, base >=4.7 && <5
, bytestring >=0.9 && <0.11
, bytestring >=0.9 && <=0.11
, containers >=0.4.2 && <0.7
, filepath >=1.4.1.1 && <1.5
, vector >=0.10 && <0.13
Expand All @@ -65,7 +65,7 @@ executable JuicyPixels-blurhash-exe
JuicyPixels >=3.2.8 && <3.4
, JuicyPixels-blurhash
, base >=4.7 && <5
, bytestring >=0.9 && <0.11
, bytestring >=0.9 && <=0.11
, containers >=0.4.2 && <0.7
, filepath >=1.4.1.1 && <1.5
, optparse-applicative >=0.14.3 && <0.18
Expand All @@ -85,7 +85,7 @@ test-suite JuicyPixels-blurhash-doctests
, JuicyPixels >=3.2.8 && <3.4
, JuicyPixels-blurhash
, base >=4.7 && <5
, bytestring >=0.9 && <0.11
, bytestring >=0.9 && <=0.11
, containers >=0.4.2 && <0.7
, doctest >=0.16.2 && <0.20
, filepath >=1.4.1.1 && <1.5
Expand All @@ -102,7 +102,7 @@ test-suite JuicyPixels-blurhash-test
JuicyPixels >=3.2.8 && <3.4
, JuicyPixels-blurhash
, base >=4.7 && <5
, bytestring >=0.9 && <0.11
, bytestring >=0.9 && <=0.11
, containers >=0.4.2 && <0.7
, filepath >=1.4.1.1 && <1.5
, hedgehog >=1.0.2 && <1.2
Expand Down
4 changes: 2 additions & 2 deletions package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: JuicyPixels-blurhash
version: 0.1.0.3
version: 0.1.0.4
github: "SamProtas/JuicyPixels-blurhash"
license: BSD3
author: "Sam Protas"
Expand Down Expand Up @@ -27,7 +27,7 @@ description: Please see the README on GitHub at <https://github.com/SamP

dependencies:
- base >= 4.7 && < 5
- bytestring >= 0.9 && < 0.11
- bytestring >= 0.9 && <= 0.11
- containers >= 0.4.2 && < 0.7
- filepath >= 1.4.1.1 && < 1.5
- JuicyPixels >= 3.2.8 && < 3.4
Expand Down
2 changes: 1 addition & 1 deletion src/Codec/Picture/Blurhash/Internal/Base83.hs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import Data.Foldable (foldlM)
import Data.Word (Word8)

import qualified Data.ByteString.Lazy as BS
import qualified Data.ByteString.Lazy.Builder as BS
import qualified Data.ByteString.Builder as BS
import qualified Data.Map as Map
import qualified Data.Vector as V

Expand Down
2 changes: 1 addition & 1 deletion src/Codec/Picture/Blurhash/Internal/Encode.hs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import Data.Foldable (foldl')
import GHC.Generics (Generic)

import qualified Data.ByteString.Lazy as BS
import qualified Data.ByteString.Lazy.Builder as BS
import qualified Data.ByteString.Builder as BS
import Codec.Picture (DynamicImage, Image(..), PixelRGB8(..), PixelRGBF(..), convertRGB8, colorMap)
import Codec.Picture.Types (pixelFold, ColorConvertible(..)) -- ColorConvertible imported for haddocks

Expand Down