cabal-version: 2.2 name: lackey version: 2.0.0.7 synopsis: Generate Ruby clients from Servant APIs. description: Lackey generates Ruby clients from Servant APIs. bug-reports: https://github.com/tfausak/lackey/issues build-type: Simple category: Web extra-source-files: CHANGELOG.markdown README.markdown homepage: https://github.com/tfausak/lackey#readme license-file: LICENSE.markdown license: MIT maintainer: Taylor Fausak source-repository head location: https://github.com/tfausak/lackey type: git flag pedantic default: False description: Enables @-Werror@, which turns warnings into errors. manual: True common library build-depends: , base >= 4.16.0 && < 4.20 , servant-foreign >= 0.15.4 && < 0.17 , text >= 1.2.5 && < 1.3 || >= 2.0 && < 2.2 default-language: Haskell2010 ghc-options: -Weverything -Wno-all-missed-specialisations -Wno-implicit-prelude -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: lackey ghc-options: -rtsopts -threaded -Wno-unused-packages library import: library exposed-modules: Lackey hs-source-dirs: source/library test-suite lackey-test-suite import: executable build-depends: , hspec >= 2.9.7 && < 2.12 , servant >= 0.19.1 && < 0.21 hs-source-dirs: source/test-suite main-is: Main.hs type: exitcode-stdio-1.0