packages feed

polysemy-process 0.12.0.0 → 0.12.1.0

raw patch · 9 files changed

+3/−11 lines, 9 filesdep ~incipit-core

Dependency ranges changed: incipit-core

Files

lib/Polysemy/Process/Effect/Process.hs view
@@ -3,7 +3,6 @@ -- |Description: Process Effect, Internal module Polysemy.Process.Effect.Process where -import Polysemy.Scoped (Scoped, Scoped_, scoped, scoped_) import Polysemy.Input (Input (Input)) import Polysemy.Output (Output (Output)) import Polysemy.Resume (interpretResumable, restop, type (!!))
lib/Polysemy/Process/Effect/Pty.hs view
@@ -3,7 +3,6 @@ -- |Description: Pty Effect, Internal module Polysemy.Process.Effect.Pty where -import Polysemy.Scoped (Scoped_, scoped_) import System.IO (Handle)  -- |Horizontal size of a pseudo terminal in characters.
lib/Polysemy/Process/Effect/SystemProcess.hs view
@@ -3,7 +3,6 @@ -- |Description: SystemProcess Effect, Internal module Polysemy.Process.Effect.SystemProcess where -import Polysemy.Scoped (Scoped, Scoped_, scoped, scoped_) import Polysemy.Resume (type (!!)) import System.Exit (ExitCode) import qualified System.Posix as Signal
lib/Polysemy/Process/Interpreter/Process.hs view
@@ -31,7 +31,6 @@   stopNote,   type (!!),   )-import Polysemy.Scoped (Scoped, Scoped_) import Prelude hiding (fromException) import System.IO (BufferMode (NoBuffering), Handle, hSetBuffering, stdin, stdout) 
lib/Polysemy/Process/Interpreter/ProcessOneshot.hs view
@@ -3,7 +3,6 @@  import Polysemy.Conc.Effect.Race (Race) import Polysemy.Resume (Stop, interpretScopedRWith_, type (!!))-import Polysemy.Scoped (Scoped, Scoped_)  import Polysemy.Process.Data.ProcessError (ProcessError) import Polysemy.Process.Data.ProcessOptions (ProcessOptions)
lib/Polysemy/Process/Interpreter/Pty.hs view
@@ -4,7 +4,6 @@ module Polysemy.Process.Interpreter.Pty where  import Polysemy.Resume (Stop, interpretScopedResumable, stopEitherWith, stopNote, type (!!))-import Polysemy.Scoped (Scoped_) import System.Posix (closeFd, fdToHandle, openPseudoTerminal) import System.Posix.Pty (closePty, createPty, ptyDimensions, resizePty) 
lib/Polysemy/Process/Interpreter/SystemProcess.hs view
@@ -5,7 +5,6 @@  import Data.ByteString (hGetSome, hPut) import Polysemy.Resume (Stop, interpretResumable, interpretScopedR, stop, stopNote, stopTryIOError, type (!!))-import Polysemy.Scoped (Scoped, Scoped_, runScopedNew) import Prelude hiding (fromException) import System.IO (BufferMode (NoBuffering), Handle, hSetBuffering) import qualified System.Posix as Signal
polysemy-process.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack  name:           polysemy-process-version:        0.12.0.0+version:        0.12.1.0 synopsis:       Polysemy effects for system processes description:    See https://hackage.haskell.org/package/polysemy-process/docs/Polysemy-Process.html category:       Concurrency@@ -120,7 +120,7 @@   ghc-options: -Wall -Wredundant-constraints -Wincomplete-uni-patterns -Wmissing-deriving-strategies -Widentities -Wunused-packages   build-depends:       base >=4.12 && <5-    , incipit-core >=0.4+    , incipit-core >=0.4.1     , path ==0.9.*     , path-io ==1.7.*     , polysemy ==1.9.*@@ -210,7 +210,7 @@   ghc-options: -Wall -Wredundant-constraints -Wincomplete-uni-patterns -Wmissing-deriving-strategies -Widentities -Wunused-packages -threaded -rtsopts -with-rtsopts=-N   build-depends:       base >=4.12 && <5-    , incipit-core >=0.4+    , incipit-core >=0.4.1     , polysemy     , polysemy-conc     , polysemy-plugin
test/Polysemy/Process/Test/ProcessTest.hs view
@@ -5,7 +5,6 @@ import qualified Data.ByteString as ByteString import qualified Polysemy.Conc.Effect.Race as Conc (timeout) import Polysemy.Conc.Effect.Race (Race)-import Polysemy.Scoped (Scoped) import Polysemy.Conc.Interpreter.Race (interpretRace) import qualified Polysemy.Conc.Race as Race import Polysemy.Resume (resumeEither, resumeHoistAs, resumeHoistError, resuming, runStop, type (!!), (<!))