2024-08-27 12:15:49 +00:00
|
|
|
cabal-version: 3.4
|
|
|
|
name: exblo-server
|
2024-10-14 15:18:47 +00:00
|
|
|
version: 0.3.0.0
|
2024-08-27 12:15:49 +00:00
|
|
|
-- synopsis:
|
|
|
|
-- description:
|
|
|
|
homepage: https://vergara.tech/exblo
|
|
|
|
license: MIT
|
|
|
|
license-file: LICENSE
|
|
|
|
author: Vergara Technologies LLC
|
|
|
|
maintainer: contact@vergara.tech
|
|
|
|
-- copyright:
|
|
|
|
category: Web
|
|
|
|
build-type: Simple
|
|
|
|
extra-doc-files: CHANGELOG.md
|
|
|
|
-- extra-source-files:
|
|
|
|
|
|
|
|
common warnings
|
|
|
|
ghc-options: -Wall
|
|
|
|
|
|
|
|
library
|
|
|
|
import: warnings
|
2024-10-11 13:35:08 +00:00
|
|
|
exposed-modules:
|
|
|
|
Server
|
|
|
|
, Types
|
2024-08-27 12:15:49 +00:00
|
|
|
-- other-modules:
|
|
|
|
-- other-extensions:
|
|
|
|
build-depends:
|
|
|
|
base ^>=4.18.2.1
|
2024-10-11 13:35:08 +00:00
|
|
|
, bytestring
|
2024-08-27 12:15:49 +00:00
|
|
|
, servant-server
|
|
|
|
, hexstring
|
2024-10-11 13:35:08 +00:00
|
|
|
, scientific
|
2024-08-27 12:15:49 +00:00
|
|
|
, text
|
|
|
|
, aeson
|
|
|
|
, base16-bytestring
|
|
|
|
, zcash-haskell
|
|
|
|
hs-source-dirs: src
|
|
|
|
default-language: GHC2021
|
|
|
|
|
|
|
|
executable exblo-server
|
|
|
|
import: warnings
|
|
|
|
main-is: Main.hs
|
|
|
|
-- other-modules:
|
|
|
|
-- other-extensions:
|
|
|
|
build-depends:
|
|
|
|
base ^>=4.18.2.1
|
|
|
|
, warp
|
|
|
|
, exblo-server
|
|
|
|
|
|
|
|
hs-source-dirs: app
|
|
|
|
pkgconfig-depends: rustzcash_wrapper
|
|
|
|
default-language: GHC2021
|
|
|
|
|
|
|
|
test-suite exblo-server-test
|
|
|
|
import: warnings
|
|
|
|
default-language: GHC2021
|
|
|
|
-- other-modules:
|
|
|
|
-- other-extensions:
|
|
|
|
type: exitcode-stdio-1.0
|
|
|
|
hs-source-dirs: test
|
|
|
|
main-is: Spec.hs
|
|
|
|
build-depends:
|
|
|
|
base ^>=4.18.2.1,
|
|
|
|
exblo-server
|