myriad/myriad.cabal

106 lines
2.2 KiB
Plaintext

cabal-version: 2.2
name: myriad
version: 0.3.0.0
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: onecomputer00@gmail.com
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:
BlockArguments
ConstraintKinds
DataKinds
DeriveAnyClass
DeriveGeneric
DeriveTraversable
DerivingStrategies
FlexibleContexts
FlexibleInstances
FunctionalDependencies
GADTs
GeneralizedNewtypeDeriving
KindSignatures
LambdaCase
MultiParamTypeClasses
MultiWayIf
NamedFieldPuns
OverloadedStrings
PatternSynonyms
PolyKinds
RankNTypes
ScopedTypeVariables
TupleSections
TypeApplications
TypeFamilies
TypeOperators
ViewPatterns
build-depends:
aeson
, async
, base >= 4.13 && < 5
, bytestring
, containers
, filepath
, HsYAML >= 0.2
, lifted-async
, lifted-base
, monad-control
, monad-logger
, mtl
, servant
, servant-server
, snowflake
, string-conversions
, text
, time
, transformers
, transformers-base
, typed-process
, wai
, warp
library
import: shared
exposed-modules:
Myriad
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