packages feed

autoexporter-2.0.0.14: autoexporter.cabal

cabal-version: 2.2
name: autoexporter
version: 2.0.0.14
synopsis: Automatically re-export modules.
description: Autoexporter automatically re-exports modules.
build-type: Simple
category: Utility
extra-doc-files:
  CHANGELOG.md
  README.md

license-file: LICENSE.txt
license: MIT
maintainer: Taylor Fausak

source-repository head
  location: https://github.com/tfausak/autoexporter
  type: git

flag pedantic
  default: False
  manual: True

common library
  build-depends: base ^>=4.19.0.0 || ^>=4.20.0.0 || ^>=4.21.0.0
  default-language: Haskell2010
  ghc-options:
    -Weverything
    -Wno-all-missed-specialisations
    -Wno-implicit-prelude
    -Wno-missed-specialisations
    -Wno-missing-deriving-strategies
    -Wno-missing-exported-signatures
    -Wno-missing-kind-signatures
    -Wno-missing-safe-haskell-mode
    -Wno-prepositive-qualified-module
    -Wno-unsafe

  if flag(pedantic)
    ghc-options: -Werror

common executable
  import: library
  build-depends: autoexporter
  ghc-options:
    -rtsopts
    -threaded

library
  import: library
  build-depends:
    Cabal-syntax ^>=3.10.1.0 || ^>=3.12.0.0 || ^>=3.14.0.0,
    directory ^>=1.3.8.1,
    filepath ^>=1.4.100.1 || ^>=1.5.2.0,

  -- cabal-gild: discover source/library
  exposed-modules: Autoexporter
  hs-source-dirs: source/library

executable autoexporter
  import: executable
  hs-source-dirs: source/executable
  main-is: Main.hs