You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

141 lines
4.5 KiB

name: transaq-connector
version: 0.1.0.0
-- synopsis:
-- description:
homepage: https://github.com/githubuser/transaq-connector#readme
license: BSD3
license-file: LICENSE
author: Denis Tereshkin
maintainer: denis@kasan.ws
copyright: 2023 Denis Tereshkin
category: Web
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
CHANGELOG.md
executable transaq-connector
hs-source-dirs: src
main-is: Main.hs
other-modules: Paths_transaq_connector
, Config
, Transaq
, TickerInfoServer
, HistoryProviderServer
, Version
, TXML
, TXMLConnector
, TXMLConnector.Internal
, TickTable
, FSM
, PaperBroker
, Commissions
default-extensions: OverloadedStrings
, MultiWayIf
, MultiParamTypeClasses
default-language: Haskell2010
build-depends: base >= 4.7 && < 5
, dhall
, eventcounters
, libatrade == 0.15.0.0
, text
, transformers
, co-log
, zeromq4-haskell
, aeson
, bytestring
, BoundedChan
, containers
, xml
, Decimal
, time
, attoparsec
, stm
, extra
, errors
, mtl
, vector
, binary
, bimap
, deque
, network-uri
, ekg-statsd
, ekg-core
, slave-thread
, th-printf
, barbies
, xeno
extra-lib-dirs: lib
ghc-options: -Wall
-Wcompat
-Widentities
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wmissing-export-lists
-Wmissing-home-modules
-Wpartial-fields
-Wredundant-constraints
-threaded -rtsopts -with-rtsopts=-N
if os(windows)
extra-libraries: txmlconnector64
other-modules: Win32.TXML
else
other-modules: Linux.TXML
test-suite transaq-connector-test
type: exitcode-stdio-1.0
hs-source-dirs: test src
main-is: Spec.hs
other-modules: Test.TickTable
, Test.FSM
, Test.Transaq
, TXMLConnector
, TXMLConnector.Internal
, FSM
, TickTable
, Transaq
, Commissions
, Config
, TXML
, TickerInfoServer
build-depends: base
, containers
, libatrade
, stm
, tasty
, tasty-hunit
, dhall
, eventcounters
, libatrade == 0.15.0.0
, text
, transformers
, co-log
, zeromq4-haskell
, aeson
, bytestring
, BoundedChan
, containers
, xml
, Decimal
, time
, attoparsec
, stm
, extra
, errors
, mtl
, vector
, binary
, bimap
, deque
, network-uri
, ekg-statsd
, ekg-core
, slave-thread
, xeno
, barbies
, raw-strings-qq
, ieee754
default-extensions: OverloadedStrings
, MultiWayIf
, MultiParamTypeClasses