ipfs 1.1.5.0 → 1.1.5.1
raw patch · 2 files changed
+29/−26 lines, 2 files
Files
- ipfs.cabal +8/−6
- library/Network/IPFS/Prelude.hs +21/−20
ipfs.cabal view
@@ -1,11 +1,11 @@-cabal-version: 2.2+cabal-version: 2.0 -- This file has been generated from package.yaml by hpack version 0.34.2. -- -- see: https://github.com/sol/hpack name: ipfs-version: 1.1.5.0+version: 1.1.5.1 synopsis: Access IPFS locally and remotely description: Interact with the IPFS network by shelling out to a local IPFS node or communicating via the HTTP interface of a remote IPFS node. category: Network@@ -13,14 +13,16 @@ bug-reports: https://github.com/fission-suite/ipfs-haskell/issues author: Brooklyn Zelenka, Daniel Holmgren,- Steven Vandevelde+ Steven Vandevelde,+ James Walker maintainer: brooklyn@fission.codes, daniel@fission.codes,- steven@fission.codes+ steven@fission.codes,+ james@fission.codes copyright: © 2020 Fission Internet Software Services for Open Networks Inc.-license: AGPL-3.0-or-later+license: Apache-2.0 license-file: LICENSE-tested-with: GHC==8.6.5+tested-with: GHC==8.8.4 build-type: Simple extra-source-files: README.md
library/Network/IPFS/Prelude.hs view
@@ -14,33 +14,34 @@ , logOther ) where -import Control.Lens ((%~), (.~), (?~), (^?))-import Control.Monad.Logger (MonadLogger (..), ToLogStr (..), LogLevel (..), logWithoutLoc)+import Control.Lens ((?~))+import Control.Monad.Logger (LogLevel (..), MonadLogger (..), ToLogStr (..), logWithoutLoc) import Data.Aeson import Network.IPFS.Internal.Orphanage.Utf8Builder () import Flow +import RIO hiding+ ( Handler+ , LogLevel (..)+ , LogSource+ , id+ , logDebug+ , logDebugS+ , logError+ , logErrorS+ , logInfo+ , logInfoS+ , logOther+ , logOtherS+ , logWarn+ , logWarnS+ , timeout+ , ($)+ , (&)+ ) import RIO.Process-import RIO hiding ( Handler- , LogLevel (..)- , LogSource- , logDebug- , logDebugS- , logError- , logErrorS- , logInfo- , logInfoS- , logOther- , logOtherS- , logWarn- , logWarnS- , id- , timeout- , ($)- , (&)- ) identity :: a -> a identity a = a