-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.yaml
58 lines (52 loc) · 1.19 KB
/
package.yaml
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
name: alchemy
version: 0.1.0
synopsis: "ALCHEMY: A Language and Compiler for Homomorphic Encryption Made easY"
github: cpeikert/ALCHEMY
author:
- Eric Crockett <ecrockett0@gmail.com>
- Chris Peikert <cpeikert@alum.mit.edu>
- Chad Sharp <cmlsharp@umich.edu>
copyright:
- Eric Crockett
- Chris Peikert
category: Crypto
stability: experimental
description: TODO
extra-source-files: README
dependencies:
- base >= 4.7 && < 5
- constraints
- lol >= 0.7
- lol-apps >= 0.2
- MonadRandom
- mtl
- numeric-prelude
- singletons
- deepseq
- tagged-transformer
- template-haskell
- data-default
- lens
library:
source-dirs: src
other-modules: Crypto.Alchemy.Interpreter.PT2CT.Noise
_common_exe_opts: &exe_opts
source-dirs: examples
other-modules: Common
dependencies:
- alchemy
- lol-cpp
- time
executables:
#alchemy-arithmetic:
#<<: *exe_opts
#main: Arithmetic.hs
#ghc-options: -rtsopts -main-is Arithmetic
alchemy-homomrlwr:
<<: *exe_opts
main: HomomRLWR.hs
ghc-options: -main-is HomomRLWR -fomit-interface-pragmas
#alchemy-tunnel:
#<<: *exe_opts
#main: Tunnel.hs
#ghc-options: -rtsopts -main-is Tunnel