-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcryptographer.cabal
More file actions
87 lines (80 loc) · 3.03 KB
/
cryptographer.cabal
File metadata and controls
87 lines (80 loc) · 3.03 KB
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
-- Initial cryptographer.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: cryptographer
version: 0.1.0.0
synopsis: Create encrypted internet pages
-- description:
license: BSD3
license-file: LICENSE
author: Ernesto Rodriguez
maintainer: neto@netowork.me
-- copyright:
category: Web
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
data-files: *.js
data-dir: data
executable cryptographer
main-is: MainCmd.hs
-- Used to trick ghc-mod with cabal defined modules
cpp-options: -DCABAL
other-modules: Cryptographer.Util
,Cryptographer.Cmd
,Cryptographer.Cmd.Encrypt
,Cryptographer.Cmd.Render
,Cryptographer.Common
,Cryptographer.Cmd.Processors
,Paths_cryptographer
other-extensions:
build-depends: base >=4.7 && <4.8
,crypto-api
,crypto-cipher-types >= 0.0.9
,cipher-blowfish >= 0.0.3
,Twofish >= 0.3
,array >= 0.5
,base64-bytestring >= 0.1
,SHA >= 1.4
,bytestring
,largeword
,blaze-html >= 0.7
,blaze-markup >= 0.6
,binary >= 0.7
,text >= 1.0
,pipes >= 4.0
,mtl
,transformers >= 0.3
,pipes-bytestring >= 2.1
,pipes-safe >= 2.1
,pipes-parse >= 3.0
,pipes-binary >= 0.4
,attoparsec >= 0.8
,http-conduit >= 2.1
,process >= 1.0
,haskeline >= 0.7.1
,cmdargs >= 0.10
hs-source-dirs: src
default-language: Haskell2010
-- executable cryptographerUi
-- main-is: Main.hs
-- Build-Tools: ghcjs
-- other-modules: Cryptographer.BaseUtil
-- ,Cryptographer.Web
-- ,Cryptographer.Web.Utils.Dom
-- ,Cryptographer.Common
-- -- other-extensions:
-- build-depends: base >=4.7 && <4.8
-- ,crypto-api
-- ,crypto-cipher-types >= 0.0.9
-- ,cipher-blowfish >= 0.0.3
-- ,Twofish >= 0.3
-- ,base64-bytestring >= 0.1
-- ,SHA >= 1.4
-- ,bytestring
-- ,largeword
-- ,binary >= 0.7
-- ,transformers
-- ,ghcjs-dom >= 0.1.0
-- ,mtl >= 2.2
-- hs-source-dirs: src
-- default-language: Haskell2010