From b659f48c3eb48f90e20e9f051fd99d2ecb64e87e Mon Sep 17 00:00:00 2001 From: Benjamin Summers Date: Wed, 11 Mar 2020 19:41:07 -0700 Subject: [PATCH] urbit-atom: No `classy-prelude` dependency. --- pkg/hs/urbit-atom/package.yaml | 2 -- pkg/hs/urbit-atom/test/Main.hs | 5 +++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/pkg/hs/urbit-atom/package.yaml b/pkg/hs/urbit-atom/package.yaml index a36bcc26eb..ef471ef0e3 100644 --- a/pkg/hs/urbit-atom/package.yaml +++ b/pkg/hs/urbit-atom/package.yaml @@ -29,7 +29,6 @@ tests: dependencies: - base - bytestring - - classy-prelude - QuickCheck - tasty - tasty-hunit @@ -45,7 +44,6 @@ executables: ghc-options: "-threaded -rtsopts -with-rtsopts=-N" dependencies: - base - - classy-prelude - urbit-atom default-extensions: diff --git a/pkg/hs/urbit-atom/test/Main.hs b/pkg/hs/urbit-atom/test/Main.hs index 0f625ae975..eb69d5366c 100644 --- a/pkg/hs/urbit-atom/test/Main.hs +++ b/pkg/hs/urbit-atom/test/Main.hs @@ -5,14 +5,15 @@ module Main (main) where -------------------------------------------------------------------------------- -import ClassyPrelude hiding (Vector) +import Prelude import Numeric.Natural import Test.QuickCheck hiding ((.&.)) import Test.Tasty import Test.Tasty.QuickCheck import Test.Tasty.TH -import Data.Vector.Primitive (Vector) +import Data.ByteString (ByteString) +import Data.Vector.Primitive (Vector, Prim) import qualified Data.ByteString as BS import qualified Data.ByteString.Unsafe as BS