File tree Expand file tree Collapse file tree
tools/bonanza/src/Bonanza Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -149,6 +149,8 @@ extra-deps:
149149- network-uri-static-0.1.1.0
150150- list-t-1.0.1 # 1.0.0.1 doesn't build
151151- unliftio-0.2.10 # for pooled concurrency utils in UnliftIO.Async
152+ - network-2.7.0.2 # to get nicer errors when connections fail
153+ - HaskellNet-SSL-0.3.4.1 # first version to support network-2.7
152154
153155# the following are just not on Stackage (and most of these were present in
154156# LTS-11 but got evicted in LTS-12)
Original file line number Diff line number Diff line change 11{-# LANGUAGE OverloadedStrings #-}
22{-# LANGUAGE RecordWildCards #-}
33
4+ -- Network.BSD got deprecated in network-2.7; this line won't be needed once we
5+ -- move to network-3.0 because then we can use the network-bsd package
6+ {-# OPTIONS_GHC -Wno-deprecations #-}
7+
48module Bonanza.Metrics
59 ( Stats (.. )
610 , debugCollectd
Original file line number Diff line number Diff line change 66{-# LANGUAGE StandaloneDeriving #-}
77
88-- necessary because of missing 'Eq ZonedTime' instance
9- {-# OPTIONS_GHC -fno-warn-orphans #-}
9+ {-# OPTIONS_GHC -fno-warn-orphans #-}
10+ -- Network.BSD got deprecated in network-2.7; this line won't be needed once we
11+ -- move to network-3.0 because then we can use the network-bsd package
12+ {-# OPTIONS_GHC -Wno-deprecations #-}
1013
1114module Bonanza.Streaming.Kibana
1215 ( KibanaEvent
You can’t perform that action at this time.
0 commit comments