shake-0.13.3: Development/Shake/Classes.hs
-- | This module reexports the six necessary type classes that every 'Rule' type must support.
-- You can use this module to define new rules without depending on the @binary@, @deepseq@ and @hashable@ packages.
module Development.Shake.Classes(
Show(..), Typeable(..), Eq(..), Hashable(..), Binary(..), NFData(..)
) where
import Data.Hashable
import Data.Typeable
import Data.Binary
import Control.DeepSeq