mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-10 10:46:11 +03:00
878429e3bf
copyright update 2020 * update template * run script: `dade-copyright-headers update .` * update script * manual adjustments * exclude frozen proto files from further header checks (by adding NO_AUTO_COPYRIGHT files)
56 lines
1.2 KiB
Plaintext
56 lines
1.2 KiB
Plaintext
cabal-version: 2.4
|
|
name: daml-lf-proto
|
|
build-type: Simple
|
|
version: 0.1.0
|
|
synopsis: DAML-LF Protobuf Encoding
|
|
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,
|
|
containers,
|
|
cryptonite,
|
|
da-hs-base,
|
|
daml-lf-ast,
|
|
daml-lf-proto-types,
|
|
either,
|
|
lens,
|
|
memory,
|
|
mtl,
|
|
proto3-suite,
|
|
scientific,
|
|
template-haskell,
|
|
text,
|
|
transformers,
|
|
vector,
|
|
exposed-modules:
|
|
DA.Daml.LF.Mangling
|
|
DA.Daml.LF.Proto3.Archive
|
|
DA.Daml.LF.Proto3.Decode
|
|
DA.Daml.LF.Proto3.DecodeV1
|
|
DA.Daml.LF.Proto3.Encode
|
|
DA.Daml.LF.Proto3.EncodeV1
|
|
DA.Daml.LF.Proto3.Error
|
|
default-extensions:
|
|
BangPatterns
|
|
FlexibleContexts
|
|
LambdaCase
|
|
NonDecreasingIndentation
|
|
OverloadedStrings
|
|
PackageImports
|
|
RecordWildCards
|
|
TypeApplications
|
|
ViewPatterns
|