dhall-haskell/dhall.cabal

170 lines
5.1 KiB
Plaintext
Raw Normal View History

2016-09-07 18:17:12 +02:00
Name: dhall
2017-09-02 19:01:20 +02:00
Version: 1.6.0
2016-09-07 18:17:12 +02:00
Cabal-Version: >=1.8.0.2
Build-Type: Simple
Tested-With: GHC == 8.0.1
2016-09-07 18:17:12 +02:00
License: BSD3
License-File: LICENSE
2017-01-29 23:59:16 +01:00
Copyright: 2017 Gabriel Gonzalez
2016-09-07 18:17:12 +02:00
Author: Gabriel Gonzalez
Maintainer: Gabriel439@gmail.com
Bug-Reports: https://github.com/Gabriel439/Haskell-Dhall-Library/issues
Synopsis: A configuration language guaranteed to terminate
Description:
Dhall is an explicitly typed configuration language that is not Turing
complete. Despite being Turing incomplete, Dhall is a real programming
language with a type-checker and evaluator.
.
Use this library to parse, type-check, evaluate, and pretty-print the Dhall
configuration language. This package also includes an executable which
type-checks a Dhall file and reduces the file to a fully evaluated normal
form.
.
Read "Dhall.Tutorial" to learn how to use this library
Category: Compiler
Extra-Source-Files:
CHANGELOG.md
Prelude/Bool/and
Prelude/Bool/build
Prelude/Bool/even
Prelude/Bool/fold
Prelude/Bool/not
Prelude/Bool/odd
Prelude/Bool/or
Prelude/Bool/show
Prelude/Double/show
Prelude/Integer/show
Prelude/List/all
Prelude/List/any
Prelude/List/build
Prelude/List/concat
Prelude/List/concatMap
Prelude/List/filter
Prelude/List/fold
Prelude/List/generate
Prelude/List/head
Prelude/List/indexed
Prelude/List/iterate
Prelude/List/last
Prelude/List/length
Prelude/List/map
Prelude/List/null
Prelude/List/replicate
Prelude/List/reverse
Prelude/List/shifted
Prelude/List/unzip
Prelude/Monoid
Prelude/Natural/build
Prelude/Natural/enumerate
Prelude/Natural/even
Prelude/Natural/fold
Prelude/Natural/isZero
Prelude/Natural/odd
Prelude/Natural/product
Prelude/Natural/show
Prelude/Natural/sum
Prelude/Natural/toInteger
Prelude/Optional/all
Prelude/Optional/any
Prelude/Optional/build
Prelude/Optional/concat
Prelude/Optional/filter
Prelude/Optional/fold
Prelude/Optional/head
Prelude/Optional/last
Prelude/Optional/length
Prelude/Optional/map
Prelude/Optional/null
Prelude/Optional/toList
Prelude/Optional/unzip
Prelude/Text/concat
Prelude/Text/concatMap
Prelude/Text/concatMapSep
Prelude/Text/concatSep
2016-09-07 18:17:12 +02:00
Source-Repository head
Type: git
Location: https://github.com/Gabriel439/Haskell-Dhall-Library
Library
Hs-Source-Dirs: src
Build-Depends:
base >= 4.9.0.0 && < 5 ,
2016-11-04 05:15:34 +01:00
ansi-wl-pprint < 0.7 ,
bytestring < 0.11,
case-insensitive < 1.3 ,
charset < 0.4 ,
2016-09-07 18:17:12 +02:00
containers >= 0.5.0.0 && < 0.6 ,
contravariant < 1.5 ,
exceptions >= 0.8.3 && < 0.9 ,
http-client >= 0.4.30 && < 0.6 ,
http-client-tls >= 0.2.0 && < 0.4 ,
lens >= 2.4 && < 4.16,
2016-11-04 05:15:34 +01:00
parsers >= 0.12.4 && < 0.13,
prettyprinter >= 1.1.1 && < 1.2 ,
2016-09-07 18:17:12 +02:00
system-filepath >= 0.3.1 && < 0.5 ,
system-fileio >= 0.2.1 && < 0.4 ,
text >= 0.11.1.0 && < 1.3 ,
text-format < 0.4 ,
transformers >= 0.2.0.0 && < 0.6 ,
trifecta >= 1.6 && < 1.8 ,
2016-11-04 05:15:34 +01:00
unordered-containers >= 0.1.3.0 && < 0.3 ,
2017-05-07 17:34:39 +02:00
vector >= 0.11.0.0 && < 0.13
2016-09-07 18:17:12 +02:00
Exposed-Modules:
Dhall,
2016-09-07 18:17:12 +02:00
Dhall.Context,
Dhall.Core,
Dhall.Import,
Dhall.Parser,
2016-11-25 04:15:29 +01:00
Dhall.Tutorial,
Dhall.TypeCheck
2017-01-29 23:10:28 +01:00
GHC-Options: -Wall
2016-09-07 18:17:12 +02:00
Executable dhall
Hs-Source-Dirs: dhall
2016-09-07 18:17:12 +02:00
Main-Is: Main.hs
Build-Depends:
base >= 4 && < 5 ,
dhall ,
optparse-generic >= 1.1.1 && < 1.3,
trifecta >= 1.6 && < 1.8,
text >= 0.11.1.0 && < 1.3
2017-01-29 23:10:28 +01:00
GHC-Options: -Wall
Other-Modules:
Paths_dhall
2017-04-29 23:41:53 +02:00
Executable dhall-format
Hs-Source-Dirs: dhall-format
Main-Is: Main.hs
Build-Depends:
base >= 4 && < 5 ,
dhall ,
optparse-generic >= 1.1.1 && < 1.3,
prettyprinter >= 1.1.1 && < 1.2,
system-filepath >= 0.3.1 && < 0.5,
trifecta >= 1.6 && < 1.8,
text >= 0.11.1.0 && < 1.3
GHC-Options: -Wall
Other-Modules:
Paths_dhall
2017-04-29 23:41:53 +02:00
Test-Suite test
Type: exitcode-stdio-1.0
Hs-Source-Dirs: tests
Main-Is: Tests.hs
GHC-Options: -Wall
2017-04-29 23:41:53 +02:00
Other-Modules:
Examples
2017-04-29 23:41:53 +02:00
Normalization
Regression
Tutorial
Util
2017-04-29 23:41:53 +02:00
Build-Depends:
base >= 4 && < 5 ,
containers >= 0.5.0.0 && < 0.6 ,
dhall ,
tasty >= 0.11.2 && < 0.12,
tasty-hunit >= 0.9.2 && < 0.10,
text >= 0.11.1.0 && < 1.3 ,
vector >= 0.11.0.0 && < 0.13