2020-06-17 03:10:23 +02:00
|
|
|
cabal-version: 2.2
|
2019-07-25 06:31:46 +02:00
|
|
|
|
|
|
|
name: myriad
|
2020-06-22 12:11:12 +02:00
|
|
|
version: 0.5.0.3
|
2020-06-07 07:47:33 +02:00
|
|
|
synopsis: Arbitrary code execution in Docker.
|
|
|
|
description: Please see the README on GitHub at <https://github.com/1Computer1/myriad#readme>
|
2019-07-25 06:31:46 +02:00
|
|
|
category: Server
|
2020-06-07 07:47:33 +02:00
|
|
|
homepage: https://github.com/1Computer1/myriad#readme
|
|
|
|
bug-reports: https://github.com/1Computer1/myriad/issues
|
|
|
|
author: 1Computer
|
2019-07-25 06:31:46 +02:00
|
|
|
maintainer: onecomputer00@gmail.com
|
2020-06-07 07:47:33 +02:00
|
|
|
copyright: 2020 1Computer
|
2019-07-25 06:31:46 +02:00
|
|
|
license: MIT
|
|
|
|
license-file: LICENSE
|
|
|
|
build-type: Simple
|
|
|
|
extra-source-files:
|
2020-06-07 07:47:33 +02:00
|
|
|
README.md
|
2019-07-25 06:31:46 +02:00
|
|
|
|
|
|
|
source-repository head
|
|
|
|
type: git
|
2020-06-07 07:47:33 +02:00
|
|
|
location: https://github.com/1Computer1/myriad
|
2019-07-25 06:31:46 +02:00
|
|
|
|
2020-06-17 03:10:23 +02:00
|
|
|
common shared
|
|
|
|
default-language: Haskell2010
|
|
|
|
default-extensions:
|
|
|
|
ConstraintKinds
|
|
|
|
DataKinds
|
|
|
|
DeriveAnyClass
|
|
|
|
DeriveGeneric
|
|
|
|
DerivingStrategies
|
|
|
|
FlexibleContexts
|
|
|
|
FlexibleInstances
|
|
|
|
FunctionalDependencies
|
|
|
|
GeneralizedNewtypeDeriving
|
|
|
|
LambdaCase
|
|
|
|
MultiParamTypeClasses
|
|
|
|
MultiWayIf
|
|
|
|
NamedFieldPuns
|
2020-06-17 05:56:01 +02:00
|
|
|
OverloadedLabels
|
2020-06-17 03:10:23 +02:00
|
|
|
OverloadedStrings
|
|
|
|
PatternSynonyms
|
|
|
|
TupleSections
|
|
|
|
TypeApplications
|
|
|
|
TypeFamilies
|
|
|
|
TypeOperators
|
2020-06-07 07:47:33 +02:00
|
|
|
build-depends:
|
|
|
|
aeson
|
|
|
|
, async
|
2020-06-22 09:38:02 +02:00
|
|
|
, base >= 4.12 && < 5
|
2020-06-07 07:47:33 +02:00
|
|
|
, bytestring
|
|
|
|
, containers
|
|
|
|
, filepath
|
|
|
|
, lifted-async
|
|
|
|
, lifted-base
|
|
|
|
, monad-control
|
|
|
|
, monad-logger
|
|
|
|
, mtl
|
2020-06-17 05:56:01 +02:00
|
|
|
, optics
|
2020-06-17 10:06:59 +02:00
|
|
|
, servant >= 0.17
|
|
|
|
, servant-server >= 0.17
|
2020-06-07 07:47:33 +02:00
|
|
|
, snowflake
|
|
|
|
, string-conversions
|
|
|
|
, text
|
|
|
|
, time
|
|
|
|
, transformers
|
|
|
|
, transformers-base
|
|
|
|
, typed-process
|
|
|
|
, wai
|
|
|
|
, warp
|
2020-06-20 23:47:37 +02:00
|
|
|
, yaml
|
2020-06-17 03:10:23 +02:00
|
|
|
|
|
|
|
library
|
|
|
|
import: shared
|
|
|
|
exposed-modules:
|
|
|
|
Myriad
|
2020-06-17 04:29:12 +02:00
|
|
|
Myriad.Config
|
2020-06-17 03:10:23 +02:00
|
|
|
Myriad.Core
|
|
|
|
Myriad.Docker
|
|
|
|
Myriad.Server
|
|
|
|
other-modules:
|
|
|
|
Paths_myriad
|
|
|
|
autogen-modules:
|
|
|
|
Paths_myriad
|
|
|
|
hs-source-dirs:
|
|
|
|
src
|
|
|
|
ghc-options: -Wall
|
2019-09-05 05:53:57 +02:00
|
|
|
|
2020-06-17 04:02:12 +02:00
|
|
|
executable myriad
|
2020-06-17 03:10:23 +02:00
|
|
|
import: shared
|
2019-07-25 06:31:46 +02:00
|
|
|
main-is: Main.hs
|
2020-06-07 07:47:33 +02:00
|
|
|
other-modules:
|
|
|
|
Paths_myriad
|
2020-06-17 03:10:23 +02:00
|
|
|
autogen-modules:
|
|
|
|
Paths_myriad
|
2020-06-07 07:47:33 +02:00
|
|
|
hs-source-dirs:
|
|
|
|
app
|
2019-07-25 06:31:46 +02:00
|
|
|
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
|
|
|
|
build-depends:
|
2020-06-17 03:10:23 +02:00
|
|
|
myriad
|
2020-06-07 07:47:33 +02:00
|
|
|
, optparse-applicative
|