Skip to content

Commit

Permalink
Added version lower bounds to .cabal file. Added an import for compat…
Browse files Browse the repository at this point in the history
…ibility to Binop.hs.
  • Loading branch information
process-bot committed Apr 21, 2012
1 parent ff3d6ec commit cb7d046
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Elm.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ Executable elm
Hs-Source-Dirs: src, src/Parse, src/Types

-- Packages needed in order to build this package.
Build-depends: base, containers, transformers, mtl, parsec, blaze-html
Build-depends: base >= 4.2.0.2, containers >= 0.3.0.0, transformers >= 0.2.2.0, mtl >= 1.1.0.2,
parsec >= 3.1.1, blaze-html >= 0.4.1.6

-- Modules not exported by this package.
-- Other-modules:
Expand All @@ -62,4 +63,5 @@ Executable elm
Executable elm-server
Main-is: Server.hs
Hs-Source-Dirs: src, src/Parse, src/Types
Build-depends: base, containers, transformers, mtl, blaze-html, HTTP, happstack-server
Build-depends: base >= 4.2.0.2, containers >= 0.3.0.0, transformers >= 0.2.2.0, mtl >= 1.1.0.2,
blaze-html >= 0.4.1.6, HTTP >= 4000.0.9, happstack-server >= 6.2.4
1 change: 1 addition & 0 deletions src/Parse/Binop.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ module Binop (binops) where
import Ast
import Combinators
import Control.Monad (liftM,guard)
import Control.Monad.Error
import Data.List (foldl',splitAt,elemIndices,group,groupBy,sortBy,find)
import Data.Map as Map
import Data.Maybe (mapMaybe)
Expand Down

0 comments on commit cb7d046

Please sign in to comment.