daml/compiler/daml-lf-reader/daml-lf-reader.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

36 lines
810 B
Plaintext

cabal-version: 2.4
name: daml-lf-reader
build-type: Simple
version: 0.1.15.0
synopsis: Daml-LF Archive reader
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:
base,
bytestring,
extra,
megaparsec,
utf8-string,
zip-archive
exposed-modules:
DA.Daml.LF.Reader
default-extensions:
NamedFieldPuns
NondecreasingIndentation
OverloadedStrings
PackageImports
RecordWildCards
TypeApplications