This repository is currently being migrated. It's locked while the migration is in progress.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.yaml
96 lines (96 loc) · 1.74 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
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
87
88
89
90
91
92
93
94
95
96
name: festung
version: '0.11.0.0'
synopsis: Remote multi-db SQLCipher server
description: |
festung is a server that provides an HTTP API to execute queries
against encrypted SQLite databases.
category: Concurrency
author: figo GmbH
maintainer: [email protected]
license: MIT
homepage: http://www.figo.io
extra-source-files:
- README.md
dependencies:
- yesod
library:
source-dirs: src
other-extensions:
- NamedFieldPuns
- OverloadedStrings
- QuasiQuotes
- TemplateHaskell
- TypeFamilies
- ViewPatterns
ld-options: -pthread
exposed-modules:
- Festung.Concurrency.Job
- Festung.Concurrency.Gig
- Festung.Concurrency.Utils
- Festung.Config
- Festung.Frontend
- Festung.Frontend.Converters
- Festung.Frontend.Validators
- Festung.Utils
- Festung.Vault
- Festung.Vault.Persistence
- Festung.Vault.VaultHandler
- Festung.Vault.VaultManager
dependencies:
- base >=4.9 && <5.0
- aeson
- argparser
- async
- base16-bytestring
- base64-bytestring
- bytestring
- case-insensitive
- containers
- cryptohash-md5
- directory
- either <5
- exceptions
- filepath
- mtl
- scientific
- sqlcipher
- text
- transformers
- unordered-containers
- utf8-string
- vector
- wai
- yesod-core
- http-types
executables:
festung:
main: Main.hs
source-dirs: prog
ghc-options:
- -threaded
- -rtsopts=all
dependencies:
- base
- argparser
- festung
tests:
tests:
main: Spec.hs
source-dirs: tests
dependencies:
- base
- aeson
- base64-bytestring
- bytestring
- containers
- directory
- exceptions
- festung
- filepath
- hspec >=2.3 && <2.5
- HUnit
- scientific
- temporary
- text
- wai-extra
- yesod-test