Skip to content
Merged
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
25 changes: 1 addition & 24 deletions packages.dhall
Original file line number Diff line number Diff line change
Expand Up @@ -109,30 +109,7 @@ let upstream =
sha256:3e9fbc9ba03e9a1fcfd895f65e2d50ee2f5e86c4cd273f3d5c841b655a0e1bda

let additions =
{ sequences =
{ dependencies =
[ "arrays"
, "assert"
, "console"
, "effect"
, "lazy"
, "maybe"
, "newtype"
, "nonempty"
, "partial"
, "prelude"
, "profunctor"
, "psci-support"
, "quickcheck"
, "quickcheck-laws"
, "tuples"
, "unfoldable"
, "unsafe-coerce"
]
, repo = "https://github.com/garganscript/purescript-sequences"
, version = "cae456c1a7463785ad33981a93e7a9cb5fc7872c"
}
, mote =
{ mote =
{ dependencies = [ "these", "transformers", "arrays" ]
, repo = "https://github.com/garyb/purescript-mote"
, version = "v1.1.0"
Expand Down
1 change: 0 additions & 1 deletion spago.dhall
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ You can edit this file as you like.
, "prelude"
, "quickcheck"
, "record"
, "sequences"
, "spec"
, "strings"
, "tuples"
Expand Down
7 changes: 0 additions & 7 deletions src/Aeson.purs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ import Data.Map (Map)
import Data.Map as Map
import Data.Maybe (Maybe(..), fromJust, maybe)
import Data.Number (isFinite, isNaN) as Number
import Data.Sequence (Seq)
import Data.Set (Set)
import Data.Set as Set
import Data.Symbol (class IsSymbol, reflectSymbol)
Expand Down Expand Up @@ -666,9 +665,6 @@ instance DecodeAeson a => DecodeAeson (L.List a) where
instance DecodeAeson a => DecodeAeson (LL.List a) where
decodeAeson x = toUnfoldable <$> decodeAeson x

instance DecodeAeson a => DecodeAeson (Seq a) where
decodeAeson x = toUnfoldable <$> decodeAeson x

instance (Ord a, DecodeAeson a) => DecodeAeson (Set a) where
decodeAeson x = Set.fromFoldable <$> (decodeAeson x :: _ (Array _))

Expand Down Expand Up @@ -835,9 +831,6 @@ instance EncodeAeson a => EncodeAeson (L.List a) where
instance EncodeAeson a => EncodeAeson (LL.List a) where
encodeAeson = encodeAeson <<< fromFoldable

instance EncodeAeson a => EncodeAeson (Seq a) where
encodeAeson = encodeAeson <<< fromFoldable

instance (EncodeAeson a) => EncodeAeson (Set a) where
encodeAeson x = encodeAeson $ (Set.toUnfoldable x :: Array _)

Expand Down