zenith/zenith.cabal

103 lines
2.1 KiB
Text
Raw Normal View History

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