61 lines
1.4 KiB
Text
61 lines
1.4 KiB
Text
|
cabal-version: 3.4
|
||
|
name: exblo-server
|
||
|
version: 0.1.0.0
|
||
|
-- 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
|
||
|
exposed-modules: Server
|
||
|
-- other-modules:
|
||
|
-- other-extensions:
|
||
|
build-depends:
|
||
|
base ^>=4.18.2.1
|
||
|
, servant-server
|
||
|
, hexstring
|
||
|
, 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
|