-
Notifications
You must be signed in to change notification settings - Fork 0
/
obfuscate.cabal
46 lines (43 loc) · 1.38 KB
/
obfuscate.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
cabal-version: 2.4
name: obfuscate
version: 0.1.0.0
synopsis: A small library for obfuscating numeric IDs
-- description:
homepage: https://github.com/foxhound-systems/hs-obfuscate
-- bug-reports:
license: BSD-3-Clause
license-file: LICENSE
author: Ben Levy
maintainer: [email protected]
-- copyright:
category: Web
extra-source-files: CHANGELOG.md, README.md
library
exposed-modules: Web.Obfuscate
, Web.Obfuscate.TH
-- other-modules:
-- other-extensions:
build-depends: base >=4.13.0.0
, aeson
, hashids-st
, persistent
, scientific
, text
, template-haskell
hs-source-dirs: src
default-language: Haskell2010
test-suite obfuscate-hs-test
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
other-modules: Web.ObfuscateSpec
build-depends: base >=4.13.0.0
, obfuscate
, hspec
, aeson
, hashids-st
, persistent
, scientific
, text
, template-haskell