removed other yaml library

This commit is contained in:
David Mosbach 2023-08-24 04:35:23 +02:00
parent 4682abb129
commit 058cf32d18
2 changed files with 1 additions and 3 deletions

View File

@ -9,7 +9,7 @@ module Workflow where
----------------Imports---------------- ----------------Imports----------------
import Data.YAML hiding (Scalar, Mapping, Sequence, encode) import Data.YAML hiding (Scalar, Mapping, Sequence, encode)
import Data.Aeson(encode, ToJSON, ToJSONKey (toJSONKey)) import Data.Aeson(encode, ToJSON (toJSON), ToJSONKey (toJSONKey))
import Control.Applicative hiding (empty) import Control.Applicative hiding (empty)
import GHC.Generics (Generic) import GHC.Generics (Generic)
import Data.Map import Data.Map
@ -20,7 +20,6 @@ module Workflow where
import qualified Data.Text.Lazy.Encoding as TL import qualified Data.Text.Lazy.Encoding as TL
import qualified Data.Text.Lazy as TL import qualified Data.Text.Lazy as TL
import Debug.Trace (trace) import Debug.Trace (trace)
import Data.Yaml (ToJSON(toJSON))
import Data.Aeson.Types (toJSONKeyText) import Data.Aeson.Types (toJSONKeyText)
--------------------------------------- ---------------------------------------

View File

@ -33,7 +33,6 @@ executable workflow-visualiser
-- LANGUAGE extensions used by modules in this package. -- LANGUAGE extensions used by modules in this package.
-- other-extensions: -- other-extensions:
build-depends: base ^>=4.16.3.0, build-depends: base ^>=4.16.3.0,
yaml >= 0.11.11.0,
HsYAML, HsYAML,
aeson >= 2.1.2.0, aeson >= 2.1.2.0,
bytestring, bytestring,