symbol 0.2.1 → 0.2.2
raw patch · 4 files changed
+14/−15 lines, 4 filesdep −sybsetup-changed
Dependencies removed: syb
Files
- Data/Symbol.hs +4/−4
- Data/Symbol/Unsafe.hs +7/−6
- Setup.hs +0/−1
- symbol.cabal +3/−4
Data/Symbol.hs view
@@ -1,11 +1,11 @@+{-# LANGUAGE Trustworthy #-}+ -- | -- Module : Data.Symbol -- Copyright : (c) Harvard University 2009-2011--- : (c) Geoffrey Mainland 2011-2013+-- : (c) Geoffrey Mainland 2011-2014 -- License : BSD-style--- Maintainer : mainland@eecs.harvard.edu--{-# LANGUAGE Trustworthy #-}+-- Maintainer : Geoffrey Mainland <mainland@cs.drexel.edu> module Data.Symbol ( Symbol,
Data/Symbol/Unsafe.hs view
@@ -1,12 +1,12 @@+{-# LANGUAGE CPP #-}+{-# LANGUAGE DeriveDataTypeable #-}+ -- | -- Module : Data.Symbol.Unsafe -- Copyright : (c) Harvard University 2009-2011--- : (c) Geoffrey Mainland 2011-2013+-- : (c) Geoffrey Mainland 2011-2014 -- License : BSD-style--- Maintainer : mainland@eecs.harvard.edu--{-# LANGUAGE CPP #-}-{-# LANGUAGE DeriveDataTypeable #-}+-- Maintainer : Geoffrey Mainland <mainland@cs.drexel.edu> module Data.Symbol.Unsafe ( Symbol(..),@@ -16,10 +16,11 @@ import Control.Concurrent.MVar import Control.DeepSeq-import Data.Generics (Data, Typeable)+import Data.Data (Data) #if __GLASGOW_HASKELL__ >= 608 import Data.String #endif /* __GLASGOW_HASKELL__ >= 608 */+import Data.Typeable (Typeable) import qualified Data.Map as Map import System.IO.Unsafe (unsafePerformIO)
Setup.hs view
@@ -1,3 +1,2 @@ import Distribution.Simple- main = defaultMain
symbol.cabal view
@@ -1,12 +1,12 @@ name: symbol-version: 0.2.1+version: 0.2.2 cabal-version: >= 1.6 license: BSD3 license-file: LICENSE copyright: (c) 2006-2011 Harvard University (c) 2011-2014 Geoffrey Mainland author: Geoffrey Mainland <mainland@cs.drexel.edu>-maintainer: mainland@cs.drexel.edu+maintainer: Geoffrey Mainland <mainland@cs.drexel.edu> stability: alpha homepage: http://www.cs.drexel.edu/~mainland/ category: Data@@ -25,8 +25,7 @@ build-depends: base >= 4 && < 5, containers >= 0.2 && < 0.6,- deepseq >= 1.0 && < 2.0,- syb >= 0.1 && < 0.5+ deepseq >= 1.0 && < 2.0 source-repository head type: git