packages feed

inferno-types-0.1.0.0: inferno-types.cabal

cabal-version:       >=1.10
name:                inferno-types
version:             0.1.0.0
synopsis:            Core types for Inferno
description:         Core types for the Inferno language
category:            DSL,Scripting
homepage:            https://github.com/plow-technologies/inferno.git#readme
bug-reports:         https://github.com/plow-technologies/inferno.git/issues
copyright:           Plow-Technologies LLC
license:             MIT
license-file:        LICENSE
author:              Sam Balco
maintainer:          info@plowtech.net
build-type:          Simple
extra-source-files:  CHANGELOG.md

source-repository head
  type: git
  location: https://github.com/plow-technologies/inferno.git

library
  exposed-modules:
      Inferno.Types.Module
    , Inferno.Types.Syntax
    , Inferno.Types.Type
    , Inferno.Types.Value
    , Inferno.Types.VersionControl
    , Inferno.Utils.Prettyprinter
  hs-source-dirs:
      src
  ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates
  build-depends:
    aeson                                >= 2.1.1 && < 2.2
    , base                               >= 4.13 && < 4.17
    , base64-bytestring                  >= 1.2.1 && < 1.3
    , bifunctors                         >= 5.5.13 && < 5.6
    , bytestring                         >= 0.10.10 && < 0.12
    , cereal                             >= 0.5.8 && < 0.6
    , containers                         >= 0.6.2 && < 0.7
    , cryptonite                         >= 0.30 && < 0.31
    , deepseq                            >= 1.4.4 && < 1.5
    , hashable                           >= 1.4.1 && < 1.5
    , megaparsec                         >= 9.2.1 && < 9.3
    , memory                             >= 0.18.0 && < 0.19
    , mtl                                >= 2.2.2 && < 2.3
    , prettyprinter                      >= 1.7.1 && < 1.8
    , QuickCheck                         >= 2.14.2 && < 2.15
    , quickcheck-arbitrary-adt           >= 0.3.1 && < 0.4
    , quickcheck-instances               >= 0.3.28 && < 0.4
    , recursion-schemes                  >= 5.2.2 && < 5.3
    , servant                            >= 0.19 && < 0.20
    , text                               >= 2.0.1 && < 2.1
  default-language: Haskell2010
  default-extensions:
      DeriveDataTypeable
    , DeriveFunctor
    , DeriveGeneric
    , FlexibleContexts
    , FlexibleInstances
    , LambdaCase
    , MultiParamTypeClasses
    , OverloadedStrings
    , TupleSections
    , RecordWildCards