cabal-version: >= 1.10 name: velma version: 0.2022.2.13 synopsis: Automatically add files to exposed-modules and other-modules. description: Velma is a Haskell package that makes it easy to automatically add files to @exposed-modules@ and @other-modules@ in Cabal package descriptions. . == Related projects . - [autopack](https://github.com/kowainik/autopack) - [cabal-auto-expose](https://github.com/deech/cabal-auto-expose) - [cabal-fmt](https://github.com/phadej/cabal-fmt) - [hpack](https://github.com/sol/hpack) build-type: Simple category: Distribution extra-source-files: CHANGELOG.markdown README.markdown license-file: LICENSE.markdown license: MIT maintainer: Taylor Fausak source-repository head location: https://github.com/tfausak/velma type: git flag pedantic default: False description: Enables @-Werror@, which turns warnings into errors. manual: True library build-depends: base >= 4.14.0 && < 4.17 , Cabal >= 3.2 && < 3.7 , containers >= 0.6.4 && < 0.7 , directory >= 1.3.6 && < 1.4 , filepath >= 1.4.2 && < 1.5 default-language: Haskell2010 exposed-modules: Velma ghc-options: -Weverything -Wno-all-missed-specialisations -Wno-implicit-prelude -Wno-missed-specialisations -Wno-missing-export-lists -Wno-missing-exported-signatures -Wno-missing-safe-haskell-mode -Wno-prepositive-qualified-module -Wno-safe -Wno-unsafe hs-source-dirs: source/library other-modules: Velma.SymbolicPath if impl(ghc >= 9.2) ghc-options: -Wno-missing-kind-signatures if flag(pedantic) ghc-options: -Werror executable velma build-depends: base, velma default-language: Haskell2010 ghc-options: -rtsopts -threaded hs-source-dirs: source/executable main-is: Main.hs test-suite velma-test-suite build-depends: base , Cabal , filepath , hspec >= 2.9.4 && < 2.10 , text >= 1.2.4 && < 1.3 , velma default-language: Haskell2010 ghc-options: -rtsopts -threaded hs-source-dirs: source/test-suite main-is: Main.hs type: exitcode-stdio-1.0