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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
*~
*#*
/dist
/dist-newstyle
.hpc
*.hi
*.core
Expand Down
10 changes: 5 additions & 5 deletions postmark.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ Flag demo
Library
Build-Depends:
base >= 3 && < 5
, aeson >= 0.6 && < 2.1
, aeson >= 0.6 && < 2.3
, attoparsec >= 0.10 && < 0.15
, bytestring >= 0.9 && < 0.12
, containers >= 0.4 && < 0.7
, http-types >= 0.6 && < 1
, text >= 0.11 && < 1.4
, bytestring >= 0.9 && < 0.13
, containers >= 0.4 && < 0.9
, http-types >= 0.6 && < 1.13
, text >= 0.11 && < 2.2
, network-api-support >= 0.3.0 && < 0.4
, http-client-tls >= 0.2.1.1 && < 0.4

Expand Down
4 changes: 2 additions & 2 deletions src/Network/Api/Postmark/Error.hs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ module Network.Api.Postmark.Error (
PostmarkErrorType (..)
) where

import Data.Aeson
import Data.Text
import Data.Aeson (FromJSON (..), Value (..), (.:))
import Data.Text (Text)

-- * Error types

Expand Down