Skip to content

Commit

Permalink
Generate the cabal file with the latest hpack (#700)
Browse files Browse the repository at this point in the history
* Do not convert LF to CRLF

* Generate the cabal file with the latest hpack
  • Loading branch information
toku-sa-n authored Apr 13, 2023
1 parent 89eee5c commit 44a9aba
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions hindent.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.0

-- This file has been generated from package.yaml by hpack version 0.34.4.
-- This file has been generated from package.yaml by hpack version 0.35.1.
--
-- see: https://github.com/sol/hpack

Expand Down Expand Up @@ -67,6 +67,8 @@ library
HIndent.Printer
other-modules:
Paths_hindent
autogen-modules:
Paths_hindent
hs-source-dirs:
src
ghc-options: -Wall -O2
Expand All @@ -91,19 +93,21 @@ library
, unicode-show
, utf8-string
, yaml
default-language: Haskell2010
if impl(ghc >= 9.4.1)
build-depends:
ghc-lib-parser >=9.4.1.20220807 && <9.5
else
build-depends:
ghc-lib-parser >=9.2.3.20220527 && <9.3
default-language: Haskell2010

library hindent-internal
exposed-modules:
HIndent.Internal.Test.Markdone
other-modules:
Paths_hindent
autogen-modules:
Paths_hindent
hs-source-dirs:
internal
ghc-options: -Wall -O2
Expand All @@ -129,13 +133,13 @@ library hindent-internal
, unicode-show
, utf8-string
, yaml
default-language: Haskell2010
if impl(ghc >= 9.4.1)
build-depends:
ghc-lib-parser >=9.4.1.20220807 && <9.5
else
build-depends:
ghc-lib-parser >=9.2.3.20220527 && <9.3
default-language: Haskell2010

executable hindent
main-is: Main.hs
Expand Down Expand Up @@ -169,19 +173,21 @@ executable hindent
, unicode-show
, utf8-string
, yaml
default-language: Haskell2010
if impl(ghc >= 9.4.1)
build-depends:
ghc-lib-parser >=9.4.1.20220807 && <9.5
else
build-depends:
ghc-lib-parser >=9.2.3.20220527 && <9.3
default-language: Haskell2010

test-suite hindent-test
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules:
Paths_hindent
autogen-modules:
Paths_hindent
hs-source-dirs:
tests
ghc-options: -Wall -O2
Expand Down Expand Up @@ -210,19 +216,21 @@ test-suite hindent-test
, unicode-show
, utf8-string
, yaml
default-language: Haskell2010
if impl(ghc >= 9.4.1)
build-depends:
ghc-lib-parser >=9.4.1.20220807 && <9.5
else
build-depends:
ghc-lib-parser >=9.2.3.20220527 && <9.3
default-language: Haskell2010

benchmark hindent-bench
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules:
Paths_hindent
autogen-modules:
Paths_hindent
hs-source-dirs:
benchmarks
ghc-options: -Wall -O2
Expand Down Expand Up @@ -251,10 +259,10 @@ benchmark hindent-bench
, unicode-show
, utf8-string
, yaml
default-language: Haskell2010
if impl(ghc >= 9.4.1)
build-depends:
ghc-lib-parser >=9.4.1.20220807 && <9.5
else
build-depends:
ghc-lib-parser >=9.2.3.20220527 && <9.3
default-language: Haskell2010

0 comments on commit 44a9aba

Please sign in to comment.