2022-06-20 16:46:13 -05:00
|
|
|
name: zenith
|
2023-10-09 08:21:18 -05:00
|
|
|
version: 0.4.0
|
2023-01-22 07:52:11 -06:00
|
|
|
git: "https://git.vergara.tech/Vergara_Tech/zenith"
|
2022-07-08 07:45:41 -05:00
|
|
|
license: BOSL
|
2022-06-20 16:46:13 -05:00
|
|
|
author: "Rene Vergara"
|
|
|
|
maintainer: "rene@vergara.network"
|
|
|
|
copyright: "Copyright (c) 2022 Vergara Technologies LLC"
|
|
|
|
|
|
|
|
extra-source-files:
|
|
|
|
- README.md
|
2022-06-20 16:53:52 -05:00
|
|
|
- CHANGELOG.md
|
2022-07-08 07:45:41 -05:00
|
|
|
- zenith.cfg
|
2022-06-20 16:46:13 -05:00
|
|
|
|
|
|
|
# Metadata used when publishing your package
|
2022-07-08 07:45:41 -05:00
|
|
|
synopsis: Haskell CLI for Zcash Full Node
|
2022-06-20 16:46:13 -05:00
|
|
|
# category: Web
|
|
|
|
|
|
|
|
# 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-01-22 07:52:11 -06:00
|
|
|
description: Please see the README on repo at <https://git.vergara.tech/Vergara_Tech/zenith#readme>
|
2022-06-20 16:46:13 -05:00
|
|
|
|
|
|
|
dependencies:
|
|
|
|
- base >= 4.7 && < 5
|
|
|
|
|
|
|
|
library:
|
|
|
|
source-dirs: src
|
|
|
|
dependencies:
|
|
|
|
- aeson
|
|
|
|
- text
|
|
|
|
- bytestring
|
|
|
|
- http-conduit
|
|
|
|
- scientific
|
|
|
|
- vector
|
|
|
|
- regex-base
|
|
|
|
- regex-posix
|
2022-06-23 10:29:33 -05:00
|
|
|
- regex-compat
|
2022-06-20 16:46:13 -05:00
|
|
|
- Clipboard
|
|
|
|
- process
|
|
|
|
- http-types
|
2022-06-23 10:29:33 -05:00
|
|
|
- array
|
|
|
|
- base64-bytestring
|
2022-06-28 14:42:35 -05:00
|
|
|
- hexstring
|
2023-04-15 19:18:30 -05:00
|
|
|
- blake2
|
2023-04-18 13:32:37 -05:00
|
|
|
- zcash-haskell
|
2022-06-20 16:46:13 -05:00
|
|
|
|
|
|
|
executables:
|
|
|
|
zenith:
|
|
|
|
main: Main.hs
|
|
|
|
source-dirs: app
|
|
|
|
ghc-options:
|
|
|
|
- -threaded
|
|
|
|
- -rtsopts
|
|
|
|
- -with-rtsopts=-N
|
|
|
|
- -Wall
|
2022-06-27 09:25:36 -05:00
|
|
|
- -Wunused-imports
|
2022-06-20 16:46:13 -05:00
|
|
|
dependencies:
|
|
|
|
- zenith
|
|
|
|
- configurator
|
|
|
|
- structured-cli
|
|
|
|
- data-default
|
|
|
|
- bytestring
|
|
|
|
- text
|
|
|
|
- time
|
|
|
|
- sort
|
|
|
|
|
|
|
|
tests:
|
|
|
|
zenith-test:
|
|
|
|
main: Spec.hs
|
|
|
|
source-dirs: test
|
|
|
|
ghc-options:
|
|
|
|
- -threaded
|
|
|
|
- -rtsopts
|
|
|
|
- -with-rtsopts=-N
|
|
|
|
dependencies:
|
|
|
|
- zenith
|