start working on the experiment runner #59
This commit is contained in:
parent
b48251d29d
commit
2ee40a7f64
|
@ -46,7 +46,7 @@ category: Network
|
||||||
extra-source-files: CHANGELOG.md
|
extra-source-files: CHANGELOG.md
|
||||||
|
|
||||||
common deps
|
common deps
|
||||||
build-depends: base ^>=4.12.0.0, containers ^>=0.6.0.1, bytestring, utf8-string ^>=1.0.1.1, network ^>=2.8.0.1, time ^>=1.8.0.2, cmdargs ^>= 0.10, cryptonite ^>= 0.25, memory, async, stm, asn1-encoding, asn1-types, asn1-parse, publicsuffix, network-byte-order, safe, iproute, mtl, random, servant, servant-server, servant-client, warp, text, unordered-containers, hashable, unicode-transforms, http-client, http-types
|
build-depends: base ^>=4.12.0.0, containers ^>=0.6.0.1, bytestring, utf8-string ^>=1.0.1.1, network ^>=2.8.0.1, time ^>=1.8.0.2, cmdargs ^>= 0.10, cryptonite ^>= 0.25, memory, async, stm, asn1-encoding, asn1-types, asn1-parse, publicsuffix, network-byte-order, safe, iproute, mtl, random, servant, servant-server, servant-client, warp, text, unordered-containers, hashable, unicode-transforms, http-client, http-types, unbounded-delays
|
||||||
ghc-options: -Wall
|
ghc-options: -Wall
|
||||||
|
|
||||||
|
|
||||||
|
@ -93,6 +93,20 @@ executable Hash2Pub
|
||||||
|
|
||||||
ghc-options: -threaded
|
ghc-options: -threaded
|
||||||
|
|
||||||
|
executable Experiment
|
||||||
|
-- experiment runner
|
||||||
|
import: deps
|
||||||
|
|
||||||
|
build-depends: Hash2Pub
|
||||||
|
|
||||||
|
main-is: Experiment.hs
|
||||||
|
|
||||||
|
hs-source-dirs: app
|
||||||
|
|
||||||
|
default-language: Haskell2010
|
||||||
|
|
||||||
|
ghc-options: -threaded
|
||||||
|
|
||||||
|
|
||||||
test-suite Hash2Pub-test
|
test-suite Hash2Pub-test
|
||||||
-- Test dependencies.
|
-- Test dependencies.
|
||||||
|
|
3
app/Experiment.hs
Normal file
3
app/Experiment.hs
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
module Main where
|
||||||
|
|
||||||
|
main = putStrLn "This gives us ALL the insights!"
|
Loading…
Reference in a new issue