zenith/zenith.cabal

103 lines
2.1 KiB
Text
Raw Normal View History

2022-06-20 16:46:13 -05:00
cabal-version: 1.12
2024-01-17 12:15:21 -06:00
-- This file has been generated from package.yaml by hpack version 0.36.0.
2022-06-20 16:46:13 -05:00
--
-- see: https://github.com/sol/hpack
name: zenith
2024-01-17 12:15:21 -06:00
version: 0.4.1
2022-07-08 08:04:16 -05:00
synopsis: Haskell CLI for Zcash Full Node
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
author: Rene Vergara
maintainer: rene@vergara.network
copyright: Copyright (c) 2022 Vergara Technologies LLC
2022-07-08 08:04:16 -05:00
license: BOSL
2022-06-20 16:46:13 -05:00
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
2022-06-20 16:53:52 -05:00
CHANGELOG.md
2022-07-08 08:04:16 -05:00
zenith.cfg
2022-06-20 16:46:13 -05:00
source-repository head
type: git
2023-01-22 07:52:11 -06:00
location: https://git.vergara.tech/Vergara_Tech/zenith
2022-06-20 16:46:13 -05:00
library
exposed-modules:
2024-02-08 13:26:54 -06:00
Zenith.CLI
Zenith.Core
2024-01-17 12:15:21 -06:00
Zenith.DB
Zenith.Types
Zenith.Utils
Zenith.Zcashd
2022-06-20 16:46:13 -05:00
other-modules:
Paths_zenith
hs-source-dirs:
src
build-depends:
Clipboard
, aeson
2022-06-23 10:29:33 -05:00
, array
2022-06-20 16:46:13 -05:00
, base >=4.7 && <5
2022-06-23 10:29:33 -05:00
, base64-bytestring
2024-02-08 13:26:54 -06:00
, brick
2022-06-20 16:46:13 -05:00
, bytestring
2024-02-12 15:08:36 -06:00
, http-client
2022-06-20 16:46:13 -05:00
, http-conduit
, http-types
, microlens
, microlens-mtl
, microlens-th
, mtl
2024-01-22 12:58:37 -06:00
, persistent
, persistent-sqlite
, persistent-template
2022-06-20 16:46:13 -05:00
, process
, regex-base
2022-06-23 10:29:33 -05:00
, regex-compat
2022-06-20 16:46:13 -05:00
, regex-posix
, scientific
, text
, vector
, vty
2023-04-18 13:32:37 -05:00
, zcash-haskell
2022-06-20 16:46:13 -05:00
default-language: Haskell2010
executable zenith
main-is: Main.hs
other-modules:
Paths_zenith
hs-source-dirs:
app
2022-06-27 09:25:36 -05:00
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall -Wunused-imports
2022-06-20 16:46:13 -05:00
build-depends:
base >=4.7 && <5
2024-02-08 13:26:54 -06:00
, brick
2022-06-20 16:46:13 -05:00
, bytestring
, configurator
, data-default
, sort
, structured-cli
, text
, time
, zenith
default-language: Haskell2010
test-suite zenith-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Paths_zenith
hs-source-dirs:
test
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.7 && <5
2024-01-22 12:58:37 -06:00
, hspec
, persistent
, persistent-sqlite
, persistent-template
2022-06-20 16:46:13 -05:00
, zenith
default-language: Haskell2010