daml/compiler/daml-lf-ast/daml-lf-ast.cabal
Gary Verhaegen 961ca80b77
hunt down DAML (#13191)
Process:

- `git ls-files | xargs sed -i 's/DAML/Daml/g'`
- `git add -p`

To review:

- Check for false positives by carefully reviewing the diff in this PR.
- Check for false negatives with `git grep DAML`.

CHANGELOG_BEGIN
- Removed all traces of DAML. This may affect error messages and debug
  outputs.
CHANGELOG_END
2022-03-08 14:25:25 +01:00

74 lines
1.6 KiB
Plaintext

cabal-version: 2.4
name: daml-lf-ast
build-type: Simple
version: 0.1.15.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