zenith/package.yaml

77 lines
1.6 KiB
YAML
Raw Normal View History

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