zenith/zenith.cabal

111 lines
2.1 KiB
Text
Raw Normal View History

cabal-version: 3.0
name: zenith
2024-02-26 09:52:30 -06:00
version: 0.4.3.0
license: MIT
license-file: LICENSE
author: Rene Vergara
maintainer: pitmut@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 16:46:13 -05:00
common warnings
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N -Wunused-imports
2022-06-20 16:46:13 -05:00
custom-setup
setup-depends:
2024-02-26 09:52:30 -06:00
base >= 4.12 && < 5
, Cabal >= 3.2.0.0
, directory >= 1.3.6.0
, filepath >= 1.3.0.2
2024-02-26 09:52:30 -06:00
, regex-base
, regex-compat
2022-06-20 16:46:13 -05:00
library
import: warnings
ghc-options: -Wall -Wunused-imports
2022-06-20 16:46:13 -05:00
exposed-modules:
Zenith.CLI
Zenith.Core
Zenith.DB
Zenith.Types
Zenith.Utils
Zenith.Zcashd
2022-06-20 16:46:13 -05:00
hs-source-dirs:
src
2022-06-20 16:46:13 -05:00
build-depends:
Clipboard
, aeson
2022-06-23 10:29:33 -05:00
, array
2024-02-26 09:52:30 -06:00
, base >=4.12 && <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
--pkgconfig-depends: rustzcash_wrapper
2024-02-26 09:52:30 -06:00
default-language: Haskell2010
2022-06-20 16:46:13 -05:00
executable zenith
import: warnings
2022-06-20 16:46:13 -05:00
main-is: Main.hs
hs-source-dirs:
app
2022-06-20 16:46:13 -05:00
build-depends:
2024-02-26 09:52:30 -06:00
base >=4.12 && <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
2024-02-26 09:52:30 -06:00
, zcash-haskell
pkgconfig-depends: rustzcash_wrapper
2024-02-26 09:52:30 -06:00
default-language: Haskell2010
2022-06-20 16:46:13 -05:00
test-suite zenith-tests
import: warnings
2022-06-20 16:46:13 -05:00
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs:
test
2022-06-20 16:46:13 -05:00
build-depends:
2024-02-26 09:52:30 -06:00
base >=4.12 && <5
, bytestring
, configurator
, data-default
, sort
, text
, time
2024-01-22 12:58:37 -06:00
, persistent
, persistent-sqlite
, hspec
2024-02-19 14:05:32 -06:00
, zcash-haskell
2022-06-20 16:46:13 -05:00
, zenith
pkgconfig-depends: rustzcash_wrapper
2024-02-26 09:52:30 -06:00
default-language: Haskell2010