diff --git a/JuicyPixels-blurhash.cabal b/JuicyPixels-blurhash.cabal index e0e8395..ef56247 100644 --- a/JuicyPixels-blurhash.cabal +++ b/JuicyPixels-blurhash.cabal @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 diff --git a/package.yaml b/package.yaml index 8536f5e..766c469 100644 --- a/package.yaml +++ b/package.yaml @@ -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" @@ -27,7 +27,7 @@ description: Please see the README on GitHub at = 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 diff --git a/src/Codec/Picture/Blurhash/Internal/Base83.hs b/src/Codec/Picture/Blurhash/Internal/Base83.hs index 2d2cb9a..ffc70e4 100644 --- a/src/Codec/Picture/Blurhash/Internal/Base83.hs +++ b/src/Codec/Picture/Blurhash/Internal/Base83.hs @@ -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 diff --git a/src/Codec/Picture/Blurhash/Internal/Encode.hs b/src/Codec/Picture/Blurhash/Internal/Encode.hs index 4ac2fdb..e02df99 100644 --- a/src/Codec/Picture/Blurhash/Internal/Encode.hs +++ b/src/Codec/Picture/Blurhash/Internal/Encode.hs @@ -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