-
Notifications
You must be signed in to change notification settings - Fork 3
/
units-parser.cabal
52 lines (46 loc) · 1.6 KB
/
units-parser.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
name: units-parser
version: 0.1.1.5
cabal-version: 1.18
synopsis: A parser for units of measure
category: Text
author: Richard Eisenberg <rae@cs.brynmawr.edu>
maintainer: Richard Eisenberg <rae@cs.brynmawr.edu>, Adam Gundry <adam@well-typed.com>
bug-reports: https://github.com/adamgundry/units-parser/issues
stability: experimental
license: BSD3
license-file: LICENSE
extra-doc-files: CHANGES.md
build-type: Simple
tested-with: GHC==9.6.1, GHC==9.4.4, GHC==9.2.7
description:
The @units-parser@ package provides a parser for unit expressions
with F#-style syntax, to support the @units@ package and other
packages providing type-level units of measure.
source-repository head
type: git
location: https://github.com/adamgundry/units-parser.git
library
ghc-options: -Wall
build-depends: base >= 4.7 && < 5
, mtl >= 1.1 && < 2.4
, multimap >= 1.2 && < 1.3
, containers >= 0.4 && < 0.7
, parsec >= 3 && < 3.2
exposed-modules:
Text.Parse.Units
default-language: Haskell2010
test-suite main
type: exitcode-stdio-1.0
main-is: Tests/Parser.hs
default-language: Haskell2010
build-depends: base >= 4.7 && < 5
, tasty >= 0.8
, tasty-hunit >= 0.8
, template-haskell
, mtl >= 1.1
, multimap >= 1.2
, syb >= 0.3
, containers >= 0.4
, parsec >= 3
other-modules: Text.Parse.Units
ghc-options: -Wall