daml/compiler/daml-lf-ast/daml-lf-ast.cabal
Moritz Kiefer 4a265e5399 Enable TypeApplications in daml-lf-ast.cabal (#2395)
We started using this recently which broke the cabal build.
2019-08-05 12:55:44 +00:00

63 lines
1.3 KiB
Plaintext

cabal-version: 2.4
name: daml-lf-ast
build-type: Simple
version: 0.1.0
synopsis: DAML-LF AST
license: Apache-2.0
author: Digital Asset
maintainer: Digital Asset
copyright: Digital Asset 2019
homepage: https://github.com/digital-asset/daml#readme
bug-reports: https://github.com/digital-asset/daml/issues
source-repository head
type: git
location: https://github.com/digital-asset/daml.git
library
default-language: Haskell2010
hs-source-dirs: src
build-depends:
base,
containers,
da-hs-base,
deepseq,
extra,
hashable,
lens,
mtl,
recursion-schemes,
safe,
scientific,
template-haskell,
text,
time,
unordered-containers
exposed-modules:
DA.Daml.LF.Ast
DA.Daml.LF.Ast.Base
DA.Daml.LF.Ast.Optics
DA.Daml.LF.Ast.Pretty
DA.Daml.LF.Ast.Recursive
DA.Daml.LF.Ast.Type
DA.Daml.LF.Ast.Util
DA.Daml.LF.Ast.Version
DA.Daml.LF.Ast.World
default-extensions:
DeriveDataTypeable
DeriveFoldable
DeriveFunctor
DeriveGeneric
DeriveTraversable
FlexibleContexts
GeneralizedNewtypeDeriving
LambdaCase
NamedFieldPuns
PackageImports
OverloadedStrings
RecordWildCards
ScopedTypeVariables
StandaloneDeriving
TypeApplications
ViewPatterns