cabal-version: 3.0

name:           utxorpc
version:        0.0.16.0
synopsis:       Generated code for a gRPC interface for UTxO Blockchains
description:    [UTxO RPC](https://utxorpc.org/) (u5c for short) is an interface tailored for interactions with UTxO-based blockchains, prioritizing performance and developer experience. By providing a common contract, a range of SDKs, and thorough documentation, UTxO RPC aims to facilitate:

                * Reusability: Enabling shared components that can be reused across different projects to simplify the integration effort.
                * Interoperability: A common interface to simplify integrations between different parties and avoid the common pitfall of vendor lock-in.
                * Performance: A serialized binary format which is compact and efficient, resulting in smaller message sizes and reduced network overhead compared to its JSON counterpart

                Please note that this package only contains the generated Haskell code from the u5c specification. To write a u5c implementation, please see the [client](https://hackage.haskell.org/package/utxorpc-client) or [server](https://hackage.haskell.org/package/utxorpc-server) SDK.

                For documentation on the specification, see [https://utxorpc.org](https://utxorpc.org/).

category:       Network, GRPC, Blockchain, Cardano
homepage:       https://github.com/utxorpc/spec#readme
bug-reports:    https://github.com/utxorpc/spec/issues
license:        Apache-2.0
build-type:     Simple
author:         TxPipe <registrant@txpipe.io>
maintainer:     TxPipe <registrant@txpipe.io>
                Dominic Mayhew <dominic.j.mayhew@gmail.com>
extra-source-files:
    README.md

library
  exposed-modules:
      Proto.Utxorpc.V1alpha.Cardano.Cardano
      Proto.Utxorpc.V1alpha.Cardano.Cardano_Fields
      Proto.Utxorpc.V1alpha.Query.Query
      Proto.Utxorpc.V1alpha.Query.Query_Fields
      Proto.Utxorpc.V1alpha.Submit.Submit
      Proto.Utxorpc.V1alpha.Submit.Submit_Fields
      Proto.Utxorpc.V1alpha.Sync.Sync
      Proto.Utxorpc.V1alpha.Sync.Sync_Fields
      Proto.Utxorpc.V1alpha.Watch.Watch
      Proto.Utxorpc.V1alpha.Watch.Watch_Fields
  hs-source-dirs:
      .
  build-depends:
      base >=4.7 && <5
    , proto-lens >= 0.7.1 && < 0.8
    -- >= 0.7.2 required as it contains support for `FieldMask`
    , proto-lens-protobuf-types >= 0.7.2 && < 0.8
    , proto-lens-runtime >= 0.7.0.6
  default-language: Haskell2010