mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-10 10:46:11 +03:00
6629aab009
* DEL-8479 bump lib versions to 0.1.13 * HOTFIX use newer resolver lts-17.11 and protobuf from hackage changelog_begin changelog_end
74 lines
1.6 KiB
Plaintext
74 lines
1.6 KiB
Plaintext
cabal-version: 2.4
|
|
name: daml-lf-ast
|
|
build-type: Simple
|
|
version: 0.1.13.0
|
|
synopsis: DAML-LF AST
|
|
license: Apache-2.0
|
|
author: Digital Asset
|
|
maintainer: Digital Asset
|
|
copyright: Digital Asset 2020
|
|
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:
|
|
aeson,
|
|
base,
|
|
bytestring,
|
|
containers,
|
|
da-hs-base,
|
|
deepseq,
|
|
Decimal,
|
|
extra,
|
|
filepath,
|
|
ghc,
|
|
hashable,
|
|
lens,
|
|
mtl,
|
|
recursion-schemes,
|
|
safe,
|
|
scientific,
|
|
template-haskell,
|
|
text,
|
|
time,
|
|
unordered-containers
|
|
exposed-modules:
|
|
DA.Daml.LF.Ast
|
|
DA.Daml.LF.Ast.Alpha
|
|
DA.Daml.LF.Ast.Base
|
|
DA.Daml.LF.Ast.FreeVars
|
|
DA.Daml.LF.Ast.Numeric
|
|
DA.Daml.LF.Ast.Optics
|
|
DA.Daml.LF.Ast.Pretty
|
|
DA.Daml.LF.Ast.Recursive
|
|
DA.Daml.LF.Ast.Subst
|
|
DA.Daml.LF.Ast.Type
|
|
DA.Daml.LF.Ast.TypeLevelNat
|
|
DA.Daml.LF.Ast.Util
|
|
DA.Daml.LF.Ast.Version
|
|
DA.Daml.LF.Ast.World
|
|
default-extensions:
|
|
BangPatterns
|
|
DeriveDataTypeable
|
|
DeriveFoldable
|
|
DeriveFunctor
|
|
DeriveGeneric
|
|
DeriveTraversable
|
|
FlexibleContexts
|
|
GeneralizedNewtypeDeriving
|
|
LambdaCase
|
|
NamedFieldPuns
|
|
PackageImports
|
|
OverloadedStrings
|
|
RecordWildCards
|
|
ScopedTypeVariables
|
|
StandaloneDeriving
|
|
TypeApplications
|
|
ViewPatterns
|