silvi-0.1.0: silvi.cabal
---------------------------------------------------------------------
name: silvi
version: 0.1.0
build-type: Simple
cabal-version: >= 1.10
category: Development, Testing
author: Daniel Cartwright
maintainer: dcartwright@layer3com.com
license: BSD3
license-file: LICENSE
homepage: https://github.com/chessai/silvi#readme
bug-reports: https://github.com/chessai/silvi/issues
extra-source-files: README.md
tested-with: GHC == 8.0.2
, GHC == 8.2.1
, GHC == 8.2.2
synopsis: A generator for different kinds of data.
description: A Haskell library for generating fake
data.
---------------------------------------------------------------------
source-repository head
type: git
branch: master
location: https://github.com/chessai/silvi.git
---------------------------------------------------------------------
library
hs-source-dirs: src
build-depends: base >= 4.9 && < 5.0
, attoparsec
, bytestring
, chronos >= 1.0.2
, http-types >= 0.11
, ip >= 1.1.1
, quantification
, savage
, text
exposed-modules: Silvi
, Silvi.Encode
, Silvi.Parsers
, Silvi.Random
, Silvi.Types
default-language: Haskell2010
other-extensions:
test-suite test
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: TestAll.hs
build-depends:
base
, quantification
, savage
, silvi
, text
default-language: Haskell2010
---------------------------------------------------------------------