-
Notifications
You must be signed in to change notification settings - Fork 4
/
locators.cabal
85 lines (66 loc) · 2.29 KB
/
locators.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
cabal-version: 1.24
name: locators
version: 0.3.0.5
synopsis: Human exchangable identifiers and locators
license: MIT
license-file: LICENSE
description:
/Overview/
.
Simple identifiers (as used, for example, as "locators" in airline reservation
systems) using a subset of the Latin1 alphabet whose characters are unambigious
when written or spoken.
author: Andrew Cowie <[email protected]>
maintainer: Andrew Cowie <[email protected]>
copyright: © 2013-2024 Athae Eredh Siniath and Others
category: Other
tested-with: GHC == 9.6.5
stability: experimental
build-type: Simple
library
default-language: Haskell2010
build-depends: base >= 4 && <5,
memory,
bytestring,
containers,
crypton
hs-source-dirs: lib
include-dirs: .
exposed-modules: Data.Locator
other-modules: Data.Locator.Common,
Data.Locator.Hashes,
Data.Locator.English16
Data.Locator.Latin25
ghc-options: -Wall
-Wwarn
-fwarn-tabs
-funbox-strict-fields
-fno-warn-missing-signatures
-fno-warn-unused-do-bind
ghc-prof-options: -fprof-auto-exported
test-suite check
type: exitcode-stdio-1.0
default-language: Haskell2010
build-depends: base >= 4 && <5,
HUnit,
hspec,
QuickCheck,
bytestring,
containers,
crypton,
locators
hs-source-dirs: tests
main-is: check.hs
other-modules: TestSuite
ghc-options: -threaded
-Wall
-Wwarn
-fwarn-tabs
-funbox-strict-fields
-fno-warn-missing-signatures
-fno-warn-unused-do-bind
include-dirs: .
source-repository head
type: git
location: [email protected]:aesiniath/locators-haskell.git
-- vim: set tabstop=21 expandtab: