Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use crypton-connection #60

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions Network/IRC/Conduit.hs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ module Network.IRC.Conduit
, module Network.IRC.Conduit.Lens
) where

import Control.Applicative ((*>))
import Control.Concurrent (newMVar, putMVar, takeMVar,
threadDelay)
import Control.Concurrent.Async (Concurrently(..))
Expand All @@ -71,7 +70,6 @@ import Data.Conduit.Network (AppData, appSink, appSource,
clientSettings, runTCPClient)
import Data.Conduit.Network.TLS (TLSClientConfig(..),
runTLSClient, tlsClientConfig)
import Data.Monoid ((<>))
import Data.Text (unpack)
import Data.Text.Encoding (decodeUtf8)
import Data.Time.Clock (NominalDiffTime, addUTCTime,
Expand Down
2 changes: 0 additions & 2 deletions Network/IRC/Conduit/Internal.hs
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,12 @@
-- considered to form part of the public interface of this library.
module Network.IRC.Conduit.Internal where

import Control.Applicative ((<$>))
import Control.Arrow ((&&&))
import Data.ByteString (ByteString, isSuffixOf, singleton,
unpack)
import Data.Char (ord)
import Data.Conduit (ConduitM, await, yield)
import Data.Maybe (isJust, listToMaybe)
import Data.Monoid ((<>))
import Data.Profunctor (Choice)
import Data.String (fromString)
import Network.IRC.CTCP (CTCPByteString, getUnderlyingByteString,
Expand Down
4 changes: 2 additions & 2 deletions irc-conduit.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ library
, bytestring >=0.10 && <0.12
, conduit >=1.2.8 && <1.4
, conduit-extra >=1.1 && <1.4
, connection >=0.2 && <0.4
, crypton-connection >=0.3 && <0.4
, irc >=0.6 && <0.7
, irc-ctcp >=0.1.1 && <0.2
, network-conduit-tls >=1.1 && <1.4
Expand All @@ -93,7 +93,7 @@ library
, time >=1.4 && <2
, tls >=1.3 && <1.6
, transformers >=0.3 && <0.6
, x509-validation >=1.6 && <1.7
, crypton-x509-validation >=1.6 && <1.7

-- Directories containing source files.
-- hs-source-dirs:
Expand Down