zenith/zenith.cabal

141 lines
2.6 KiB
Text
Raw Normal View History

cabal-version: 3.0
name: zenith
version: 0.5.0.0
license: MIT
license-file: LICENSE
author: Rene Vergara
maintainer: pitmutt@vergara.tech
copyright: (c) 2022-2024 Vergara Technologies LLC
build-type: Custom
category: Blockchain
extra-doc-files:
README.md
CHANGELOG.md
zenith.cfg
2022-06-20 21:46:13 +00:00
custom-setup
setup-depends:
base >= 4.12 && < 5
, Cabal >= 3.2.0.0
, directory >= 1.3.6.0
, filepath >= 1.3.0.2
, regex-base
, regex-compat
2022-06-20 21:46:13 +00:00
library
ghc-options: -Wall -Wunused-imports
2022-06-20 21:46:13 +00:00
exposed-modules:
Zenith.CLI
Zenith.Core
Zenith.DB
Zenith.Types
Zenith.Utils
Zenith.Zcashd
Zenith.Scanner
2022-06-20 21:46:13 +00:00
hs-source-dirs:
src
2022-06-20 21:46:13 +00:00
build-depends:
Clipboard
, aeson
2022-06-23 15:29:33 +00:00
, array
, ascii-progress
, base >=4.12 && <5
2022-06-23 15:29:33 +00:00
, base64-bytestring
, brick
2022-06-20 21:46:13 +00:00
, bytestring
, esqueleto
, resource-pool
, binary
, exceptions
, monad-logger
, vty-crossplatform
, secp256k1-haskell
, pureMD5
, ghc
, haskoin-core
2022-06-28 19:42:35 +00:00
, hexstring
, http-client
2022-06-20 21:46:13 +00:00
, http-conduit
, http-types
, microlens
, microlens-mtl
, microlens-th
, mtl
, persistent
, Hclip
, 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
, time
2022-06-20 21:46:13 +00:00
, vector
, vty
, word-wrap
2023-04-18 18:32:37 +00:00
, zcash-haskell
--pkgconfig-depends: rustzcash_wrapper
2022-06-20 21:46:13 +00:00
default-language: Haskell2010
executable zenith
ghc-options: -threaded -rtsopts -with-rtsopts=-N
2022-06-20 21:46:13 +00:00
main-is: Main.hs
hs-source-dirs:
app
2022-06-20 21:46:13 +00:00
build-depends:
base >=4.12 && <5
, brick
2022-06-20 21:46:13 +00:00
, bytestring
, configurator
, data-default
, sort
, structured-cli
, text
, time
, zenith
, zcash-haskell
pkgconfig-depends: rustzcash_wrapper
default-language: Haskell2010
executable zenscan
ghc-options: -main-is ZenScan -threaded -rtsopts -with-rtsopts=-N
main-is: ZenScan.hs
hs-source-dirs:
app
build-depends:
base >=4.12 && <5
, configurator
, monad-logger
, zenith
pkgconfig-depends: rustzcash_wrapper
2022-06-20 21:46:13 +00:00
default-language: Haskell2010
test-suite zenith-tests
2022-06-20 21:46:13 +00:00
type: exitcode-stdio-1.0
ghc-options: -threaded -rtsopts -with-rtsopts=-N
2022-06-20 21:46:13 +00:00
main-is: Spec.hs
hs-source-dirs:
test
2022-06-20 21:46:13 +00:00
build-depends:
base >=4.12 && <5
, bytestring
, configurator
, monad-logger
, data-default
, sort
, text
, time
, persistent
, persistent-sqlite
, hspec
, hexstring
, HUnit
, directory
, zcash-haskell
2022-06-20 21:46:13 +00:00
, zenith
pkgconfig-depends: rustzcash_wrapper
2022-06-20 21:46:13 +00:00
default-language: Haskell2010