myriad/myriad.cabal

101 lines
2.1 KiB
Plaintext
Raw Permalink Normal View History

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
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
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
copyright: 2020 1Computer
2019-07-25 06:31:46 +02:00
license: MIT
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
2019-07-25 06:31:46 +02:00
source-repository head
type: git
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
build-depends:
aeson
, async
, base >= 4.12 && < 5
, 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
, snowflake
, string-conversions
, text
, time
, transformers
, transformers-base
, typed-process
, wai
, warp
, 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
other-modules:
Paths_myriad
2020-06-17 03:10:23 +02:00
autogen-modules:
Paths_myriad
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
, optparse-applicative