Expose Streamly.Data.Stream.Zip from streamly-core package (#1945)

This commit is contained in:
Ranjeet Ranjan 2022-10-13 19:10:46 +05:30 committed by GitHub
parent 8d8e5a0c30
commit 36410d9ff6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,16 @@
-- |
-- Module : Streamly.Data.Stream.Zip
-- Copyright : (c) 2017 Composewell Technologies
--
-- License : BSD3
-- Maintainer : streamly@composewell.com
-- Stability : experimental
-- Portability : GHC
--
module Streamly.Data.Stream.Zip
(
ZipStream (..)
)
where
import Streamly.Internal.Data.Stream.Zip

View File

@ -350,6 +350,7 @@ library
-- streamly-core exposed modules
, Streamly.Data.Stream
, Streamly.Data.Stream.Zip
, Streamly.Data.Unbox
, Streamly.Data.Fold
, Streamly.Data.Fold.Tee