derulo-1.0.10: derulo.cabal
cabal-version: >= 1.10
name: derulo
version: 1.0.10
synopsis: Parse and render JSON simply.
description: Derulo parses and renders JSON simply.
build-type: Simple
category: JSON
extra-source-files: README.markdown
license-file: LICENSE.markdown
license: MIT
maintainer: Taylor Fausak
source-repository head
location: https://github.com/tfausak/derulo
type: git
library
build-depends:
base >= 4.13.0 && < 4.16
default-language: Haskell2010
exposed-modules: Derulo
ghc-options:
-Weverything
-Wno-implicit-prelude
-Wno-missing-deriving-strategies
-Wno-missing-exported-signatures
-Wno-safe
hs-source-dirs: src/lib
if impl(ghc >= 8.10)
ghc-options:
-Wno-missing-safe-haskell-mode
-Wno-prepositive-qualified-module
executable derulo
build-depends: base, derulo
default-language: Haskell2010
hs-source-dirs: src/exe
main-is: Main.hs
test-suite test
build-depends:
base -any
, derulo -any
, HUnit >= 1.6.1 && < 1.7
default-language: Haskell2010
hs-source-dirs: src/test
main-is: Main.hs
type: exitcode-stdio-1.0