zcash-haskell/package.yaml

52 lines
1.3 KiB
YAML
Raw Normal View History

2023-04-13 23:35:15 +00:00
name: zcash-haskell
2023-08-17 15:02:32 +00:00
version: 0.2.0
2023-04-13 23:35:15 +00:00
git: "https://git.vergara.tech/Vergara_Tech/zcash-haskell"
license: BOSL
author: "Rene Vergara"
maintainer: "rene@vergara.network"
copyright: "(c)2023 Vergara Technologies LLC"
extra-source-files:
- README.md
- CHANGELOG.md
2023-04-16 01:59:43 +00:00
- configure
2023-04-13 23:35:15 +00:00
# Metadata used when publishing your package
synopsis: Utilities to interact with the Zcash blockchain
category: Blockchain
# To avoid duplicated efforts in documentation and dealing with the
# complications of embedding Haddock markup inside cabal files, it is
# common to point users to the README.md file.
2023-08-17 15:02:32 +00:00
description: Please see the README on the repo at <https://git.vergara.tech/Vergara_Tech/zcash-haskell#readme>
2023-04-13 23:35:15 +00:00
dependencies:
- base >= 4.7 && < 5
library:
source-dirs: src
dependencies:
- bytestring
2023-04-16 02:30:54 +00:00
- borsh >= 0.2
2023-04-13 23:35:15 +00:00
- text
- foreign-rust
- generics-sop
- aeson
2023-04-13 23:35:15 +00:00
pkg-config-dependencies:
2023-04-15 23:54:54 +00:00
- rustzcash_wrapper-uninstalled
2023-04-13 23:35:15 +00:00
tests:
zcash-haskell-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- zcash-haskell
- hspec
- bytestring
- text
2023-08-21 14:57:45 +00:00
- aeson