-
Notifications
You must be signed in to change notification settings - Fork 6
/
myriad.cabal
100 lines (95 loc) · 2.06 KB
/
myriad.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
cabal-version: 2.2
name: myriad
version: 0.5.0.3
synopsis: Arbitrary code execution in Docker.
description: Please see the README on GitHub at <https://github.com/1Computer1/myriad#readme>
category: Server
homepage: https://github.com/1Computer1/myriad#readme
bug-reports: https://github.com/1Computer1/myriad/issues
author: 1Computer
maintainer: [email protected]
copyright: 2020 1Computer
license: MIT
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
source-repository head
type: git
location: https://github.com/1Computer1/myriad
common shared
default-language: Haskell2010
default-extensions:
ConstraintKinds
DataKinds
DeriveAnyClass
DeriveGeneric
DerivingStrategies
FlexibleContexts
FlexibleInstances
FunctionalDependencies
GeneralizedNewtypeDeriving
LambdaCase
MultiParamTypeClasses
MultiWayIf
NamedFieldPuns
OverloadedLabels
OverloadedStrings
PatternSynonyms
TupleSections
TypeApplications
TypeFamilies
TypeOperators
build-depends:
aeson
, async
, base >= 4.12 && < 5
, bytestring
, containers
, filepath
, lifted-async
, lifted-base
, monad-control
, monad-logger
, mtl
, optics
, servant >= 0.17
, servant-server >= 0.17
, snowflake
, string-conversions
, text
, time
, transformers
, transformers-base
, typed-process
, wai
, warp
, yaml
library
import: shared
exposed-modules:
Myriad
Myriad.Config
Myriad.Core
Myriad.Docker
Myriad.Server
other-modules:
Paths_myriad
autogen-modules:
Paths_myriad
hs-source-dirs:
src
ghc-options: -Wall
executable myriad
import: shared
main-is: Main.hs
other-modules:
Paths_myriad
autogen-modules:
Paths_myriad
hs-source-dirs:
app
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
build-depends:
myriad
, optparse-applicative