This repository has been archived by the owner on Jul 22, 2024. It is now read-only.
forked from dhall-lang/dhall-haskell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dhall-toml.cabal
97 lines (91 loc) · 2.85 KB
/
dhall-toml.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
Name: dhall-toml
Version: 1.0.3
Cabal-Version: >=1.10
Build-Type: Simple
License: BSD3
License-File: LICENSE
Copyright: 2021 ear7h
Author: ear7h
Maintainer: [email protected]
Bug-Reports: https://github.com/dhall-lang/dhall-haskell/issues
Synopsis: Convert between Dhall and TOML
Description:
Use this package if you want to convert between dhall expressions and TOML.
You can use this package as a library or an executable:
.
* See "Dhall.DhallToToml" or "Dhall.TomlToDhall" modules if you want to use this
package as a library
* Use @dhall-to-toml@, @toml-to-dhall@ programs from this package if you
want an executable.
.
The "Dhall.DhallToToml" and "Dhall.TomlToDhall" modules also contains instructions
for how to use this package
Category: Compiler
Extra-Source-Files:
README.md
CHANGELOG.md
tasty/data/*.dhall
tasty/data/*.toml
Source-Repository head
Type: git
Location: https://github.com/dhall-lang/dhall-haskell/tree/master/dhall-toml
Library
Hs-Source-Dirs: src
Build-Depends:
base >= 4.12 && < 5 ,
dhall >= 1.39.0 && < 1.43 ,
tomland >= 1.3.2.0 && < 1.4 ,
text >= 0.11.1.0 && < 2.1 ,
containers >= 0.5.9 && < 0.7 ,
unordered-containers >= 0.2 && < 0.3 ,
prettyprinter >= 1.7.0 && < 1.8 ,
optparse-applicative >= 0.14 && < 0.19
Exposed-Modules:
Dhall.DhallToToml
Dhall.TomlToDhall
Dhall.Toml.Utils
Other-Modules:
Paths_dhall_toml
GHC-Options: -Wall
Default-Language: Haskell2010
Executable dhall-to-toml
Hs-Source-Dirs: dhall-to-toml
Main-Is: Main.hs
Build-Depends:
base ,
dhall-toml
GHC-Options: -Wall
Default-Language: Haskell2010
Executable toml-to-dhall
Hs-Source-Dirs: toml-to-dhall
Main-Is: Main.hs
Build-Depends:
base ,
dhall-toml
GHC-Options: -Wall
Default-Language: Haskell2010
Test-Suite dhall-toml-test
Type: exitcode-stdio-1.0
Hs-Source-Dirs: tasty
Main-Is: Main.hs
Build-Depends:
base ,
dhall ,
dhall-toml ,
tasty < 1.5 ,
tasty-hunit >= 0.2 ,
text ,
tomland
GHC-Options: -Wall
Default-Language: Haskell2010
Test-Suite doctest
Type: exitcode-stdio-1.0
Hs-Source-Dirs: doctest
Main-Is: Main.hs
Build-Depends:
base ,
directory ,
filepath ,
doctest
GHC-Options: -Wall
Default-Language: Haskell2010