From be20882d6af6d5fe16a3ee81811d89aae2da5c05 Mon Sep 17 00:00:00 2001 From: Tanya Bouman Date: Wed, 12 Jun 2024 15:20:04 -0400 Subject: [PATCH] Add TypeOperators language extension to EdDSA.hs There is a warning in the build that missing the language extension will be an error in future versions of GHC. --- Crypto/PubKey/EdDSA.hs | 1 + 1 file changed, 1 insertion(+) diff --git a/Crypto/PubKey/EdDSA.hs b/Crypto/PubKey/EdDSA.hs index d60a3404..201a9cdc 100644 --- a/Crypto/PubKey/EdDSA.hs +++ b/Crypto/PubKey/EdDSA.hs @@ -23,6 +23,7 @@ {-# LANGUAGE RankNTypes #-} {-# LANGUAGE ScopedTypeVariables #-} {-# LANGUAGE TypeFamilies #-} +{-# LANGUAGE TypeOperators #-} module Crypto.PubKey.EdDSA ( SecretKey , PublicKey