Skip to content

Commit 45cdca1

Browse files
Remove dependency on internal streamly-core modules (#7)
1 parent 8ce91f9 commit 45cdca1

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

cabal.project

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ packages: .
33
source-repository-package
44
type: git
55
location: https://github.com/composewell/streamly-process.git
6-
tag: e310c8a9c6e61515373a2f5f1fb82f6e15fe452b
6+
tag: master
77

88
source-repository-package
99
type: git
1010
location: https://github.com/composewell/streamly.git
11-
tag: ff1dd549c630803163f4d0a722e24cbb04961a14
11+
tag: master
1212

1313
source-repository-package
1414
type: git
1515
location: https://github.com/composewell/streamly.git
16-
tag: ff1dd549c630803163f4d0a722e24cbb04961a14
16+
tag: master
1717
subdir: core

cli/Main.hs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ module Main (main) where
66

77
import Control.Monad (when)
88
import Data.Function ((&))
9-
import Streamly.Internal.Data.Stream.IsStream (SerialT)
9+
import Streamly.Prelude (SerialT)
1010
import System.Environment (getArgs)
1111

12-
import qualified Streamly.Internal.Data.Fold as Fold
13-
import qualified Streamly.Internal.Data.Stream.IsStream as Stream
12+
import qualified Streamly.Data.Fold as Fold
13+
import qualified Streamly.Prelude as Stream
1414
import qualified Streamly.Internal.FileSystem.File as File
1515
import qualified Streamly.Internal.Unicode.Stream as Unicode
1616
import qualified Streamly.Internal.System.Command as Command

src/HoogleFileParser.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ module HoogleFileParser where
77
import Data.Char (isUpper)
88
import Data.List (isPrefixOf)
99
import Data.Map (Map)
10-
import Streamly.Internal.Data.Fold (Fold)
10+
import Streamly.Data.Fold (Fold)
1111

1212
import qualified Data.Map as Map
1313
import qualified Data.Map.Strict as SMap
14-
import qualified Streamly.Internal.Data.Fold as Fold
14+
import qualified Streamly.Data.Fold as Fold
1515

1616
--------------------------------------------------------------------------------
1717
-- Types

0 commit comments

Comments
 (0)