From f0258edf003fd58fe6df6b858bbccbc0efd70e08 Mon Sep 17 00:00:00 2001 From: Mirek Kratochvil Date: Wed, 29 Jan 2025 20:38:00 +0100 Subject: [PATCH] fix dependencies, bump version, reformat --- reploy.cabal | 73 ++++++++++++++++++++++++++++------------------------ 1 file changed, 40 insertions(+), 33 deletions(-) diff --git a/reploy.cabal b/reploy.cabal index d49776c..d4d5f57 100644 --- a/reploy.cabal +++ b/reploy.cabal @@ -1,38 +1,45 @@ -cabal-version: 3.0 - -name: reploy -synopsis: Straightforward static all-in-one website builder -category: Web -version: 0.3.2.0 -build-type: Simple -license: Apache-2.0 -license-file: LICENSE +cabal-version: 3.0 +name: reploy +synopsis: Straightforward static all-in-one website builder +category: Web +version: 0.3.3.0 +build-type: Simple +license: Apache-2.0 +license-file: LICENSE executable reploy main-is: reploy.hs - other-modules: Types, AesonUtils, Utils, Tags, FormatOpts - build-depends: base == 4.* - , aeson ^>= 2.1 - , bytestring - , containers - , data-default - , directory - , extra - , filepath - , microlens - , microlens-aeson - , microlens-mtl - , microlens-th - , mustache - , optparse-applicative - , pandoc - , pandoc-types - , parsec - , scientific - , SHA - , text - , transformers - , utf8-string - , yaml + other-modules: + AesonUtils + FormatOpts + Tags + Types + Utils + + build-depends: + , aeson ^>=2.1 || ^>=2.2 + , base >=4 && <5 + , bytestring + , containers + , data-default + , directory + , extra + , filepath + , microlens + , microlens-aeson + , microlens-mtl + , microlens-th + , mustache + , optparse-applicative + , pandoc + , pandoc-types + , parsec + , scientific + , SHA + , text + , transformers + , utf8-string + , yaml + ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wunused-imports default-language: Haskell2010