Skip to content

Commit

Permalink
data-default-class -> data-default
Browse files Browse the repository at this point in the history
data-default 0.8 deprecates data-default-class by moving the `Default`
class from `Data.Default.Class` to `Data.Default`.

See: haskell-grpc-native/http2-client#97
See: kazu-yamamoto/crypton-certificate#11
See: haskell-tls/hs-tls#486
See: commercialhaskell/stackage#7545
  • Loading branch information
9999years committed Oct 28, 2024
1 parent 8b2a828 commit 9be90bb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Network/QUIC/Config.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

module Network.QUIC.Config where

import Data.Default.Class
import Data.Default
import Data.IP
import Network.Socket
import Network.TLS hiding (Hooks, HostName, Version)
Expand Down
2 changes: 1 addition & 1 deletion Network/QUIC/TLS.hs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module Network.QUIC.TLS (
) where

import Control.Applicative ((<|>))
import Data.Default.Class
import Data.Default
import Network.TLS hiding (Version)
import Network.TLS.QUIC
import System.X509
Expand Down
2 changes: 1 addition & 1 deletion quic.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ library
crypton-x509-system >= 1.6.7 && < 1.7,
filepath >= 1.4 && < 1.6,
stm >= 2.5 && < 2.6,
data-default-class >= 0.1.2 && < 0.2,
data-default >= 0.8 && <0.9,
fast-logger >= 3.2.2 && < 3.3,
unix-time >= 0.4.12 && < 0.5,
iproute >= 1.7.12 && < 1.8,
Expand Down

0 comments on commit 9be90bb

Please sign in to comment.