2020-03-27 03:26:10 +03:00
|
|
|
# Copyright (c) 2020 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
|
2020-02-06 14:54:07 +03:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2019-09-09 16:37:03 +03:00
|
|
|
name: daml-ledger
|
|
|
|
version: 0.1.0.0
|
|
|
|
description: Haskell bindings for a DAML Ledger
|
|
|
|
license: Apache-2.0
|
|
|
|
author: The DAML Authors
|
|
|
|
maintainer: nick.chapman@digitalasset.com
|
|
|
|
github: https://github.com/digital-asset/daml
|
|
|
|
|
|
|
|
dependencies:
|
|
|
|
- async
|
|
|
|
- base >= 4.7 && < 5
|
|
|
|
- bytestring
|
|
|
|
- containers
|
|
|
|
- deepseq
|
|
|
|
- exceptions
|
|
|
|
- extra
|
2020-02-28 08:39:10 +03:00
|
|
|
- mtl
|
2019-09-09 16:37:03 +03:00
|
|
|
- grpc-haskell
|
|
|
|
- proto3-suite
|
|
|
|
- proto3-wire
|
|
|
|
- retry
|
2020-02-28 08:39:10 +03:00
|
|
|
- sorted-list
|
2019-09-09 16:37:03 +03:00
|
|
|
- text
|
|
|
|
- time
|
|
|
|
- transformers
|
|
|
|
- unliftio
|
2020-02-28 08:39:10 +03:00
|
|
|
- utf8-string
|
2019-09-09 16:37:03 +03:00
|
|
|
- vector
|
|
|
|
|
|
|
|
library:
|
|
|
|
source-dirs:
|
|
|
|
- src
|
|
|
|
- gen/src
|
|
|
|
|
|
|
|
ghc-options:
|
|
|
|
- -Wall
|
|
|
|
- -Wno-name-shadowing
|
|
|
|
|
|
|
|
default-extensions:
|
|
|
|
- GeneralizedNewtypeDeriving
|
|
|
|
- LambdaCase
|
|
|
|
- NamedFieldPuns
|
|
|
|
- NondecreasingIndentation
|
|
|
|
- NumericUnderscores
|
|
|
|
- OverloadedStrings
|
|
|
|
- RecordWildCards
|
|
|
|
- ScopedTypeVariables
|