structured-haskell-mode 1.0.13 → 1.0.14
raw patch · 2 files changed
+3/−3 lines, 2 filesdep ~descriptive
Dependency ranges changed: descriptive
Files
- src/Main.hs +1/−1
- structured-haskell-mode.cabal +2/−2
src/Main.hs view
@@ -57,7 +57,7 @@ data ParseType = Decl | Stmt -- | Command line options.-options :: Consumer [Text] (Option ()) (Action,ParseType,[Extension])+options :: Monad m => Consumer [Text] (Option ()) m (Action,ParseType,[Extension]) options = (,,) <$> action <*> typ <*> exts where action = constant "parse" "Parse and spit out spans" Parse <|>
structured-haskell-mode.cabal view
@@ -1,5 +1,5 @@ name: structured-haskell-mode-version: 1.0.13+version: 1.0.14 synopsis: Structured editing Emacs mode for Haskell description: Structured editing Emacs mode for Haskell. homepage: https://github.com/chrisdone/structured-haskell-mode@@ -44,4 +44,4 @@ build-depends: base >= 4 && < 5 , haskell-src-exts == 1.15.* , text- , descriptive >= 0.4 && < 0.7+ , descriptive >= 0.7 && < 0.8