File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed
Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -17,14 +17,14 @@ extra-source-files:
1717 ChangeLog.md
1818 Readme.md
1919
20- tested-with : GHC == 8.6.5 || == 8.8.1 || == 8.10.7
20+ tested-with : GHC == 8.6.5 || == 8.8.4 || == 8.10.7 || == 9.0.2 || == 9.8.2 || == 9.10.1
2121
2222library
2323 hs-source-dirs : src, .
2424 build-depends :
2525 aeson >= 1.4.4 && < 2.3
2626 , aeson-gadt-th >= 0.2.4 && < 0.3
27- , base >= 4.12 && < 4.21
27+ , base >= 4.12 && < 4.22
2828 , bytestring >= 0.10.8 && < 0.13
2929 , constraints-extras >= 0.3.0 && < 0.5
3030 , containers >= 0.6 && < 0.8
Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ import Data.Constraint.Extras
2222import Data.Aeson
2323import Data.Default
2424import qualified Data.Text as T
25- import Data.Typeable
2625import GHC.Generics
2726import qualified Data.Map as Map
2827import Data.Some
@@ -34,14 +33,14 @@ import Reflex.Dom.WebSocket
3433
3534-- | A request tagged with an identifier
3635data TaggedRequest = TaggedRequest Int Value
37- deriving ( Typeable , Generic )
36+ deriving Generic
3837
3938instance FromJSON TaggedRequest
4039instance ToJSON TaggedRequest
4140
4241-- | A response tagged with an identifier matching the one in the 'TaggedRequest'. The identifier is the first argument.
4342data TaggedResponse = TaggedResponse Int Value
44- deriving ( Typeable , Generic )
43+ deriving Generic
4544
4645instance FromJSON TaggedResponse
4746instance ToJSON TaggedResponse
You can’t perform that action at this time.
0 commit comments