config-schema-0.2.0.0: config-schema.cabal
name: config-schema
version: 0.2.0.0
synopsis: Schema definitions for the config-value package
description: This package makes it possible to defined schemas for use when
loading configuration files using the config-value format.
These schemas can be used to be process a configuration file into
a Haskell value, or to automatically generate documentation for
the file format.
license: ISC
license-file: LICENSE
author: Eric Mertens
maintainer: emertens@gmail.com
copyright: Eric Mertens 2017
category: Language
build-type: Simple
extra-source-files: ChangeLog.md README.md
cabal-version: >=1.10
homepage: https://github.com/glguy/config-schema
bug-reports: https://github.com/glguy/config-schema/issues
source-repository head
type: git
location: https://github.com/glguy/config-schema
library
exposed-modules: Config.Schema, Config.Schema.Docs, Config.Schema.Load, Config.Schema.Spec
build-depends: base >=4.9 && <4.11,
text >=1.2 && <1.3,
free >=4.12 && <4.13,
kan-extensions >=5.0 && <5.1,
semigroupoids >=5.2 && <5.3,
transformers >=0.5 && <0.6,
config-value >=0.5 && <0.6,
containers >=0.5 && <0.6
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall