diff --git a/http-client-streams.cabal b/http-client-streams.cabal
--- a/http-client-streams.cabal
+++ b/http-client-streams.cabal
@@ -1,5 +1,5 @@
 name:                http-client-streams
-version:             0.1.0.0
+version:             0.1.0.1
 synopsis:            http-client for io-streams supporting openssl
 description:         Thin io-streams wrapper for http-client w/ openssl support
 license:             BSD3
diff --git a/src/System/IO/Streams/HTTP.hs b/src/System/IO/Streams/HTTP.hs
--- a/src/System/IO/Streams/HTTP.hs
+++ b/src/System/IO/Streams/HTTP.hs
@@ -4,14 +4,14 @@
 -- > {-# LANGUAGE OverloadedStrings #-}
 -- > module Main where
 -- >  
--- > import           OpenSSL                ( withOpenSSL )
--- > import           OpenSSL.Session        ( context )
 -- > import qualified System.IO.Streams as Streams
 -- > import           System.IO.Streams.HTTP ( opensslManagerSettings
 -- >                                         , parseUrl
 -- >                                         , withManager
 -- >                                         , withHTTP
 -- >                                         , responseBody
+-- >                                         , withOpenSSL
+-- >                                         , context
 -- >                                         )
 -- >  
 -- > ------------------------------------------------------------------------------
@@ -33,6 +33,8 @@
     -- $httpclient
     module Network.HTTP.Client
   , module Network.HTTP.Client.OpenSSL
+  , module OpenSSL
+  , module OpenSSL.Session
     -- * io-streams Interface
   , withHTTP
   , streamN
@@ -46,6 +48,9 @@
 import           Data.Int                ( Int64 )
 import           Network.HTTP.Client
 import           Network.HTTP.Client.OpenSSL
+
+import           OpenSSL
+import           OpenSSL.Session
 
 import           System.IO               ( stdout )
 import           System.IO.Streams       ( InputStream
