-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhashgraph.cabal
40 lines (37 loc) · 1.11 KB
/
hashgraph.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
cabal-version: >=1.10
name: hashgraph
version: 0.1.0.0
-- synopsis:
description: Implementation of the Hashgraph ordering algorithm.
license: MIT
license-file: LICENSE
author: drsk
maintainer: drsk
build-type: Simple
library
-- other-modules:
-- other-extensions:
exposed-modules: Data.Hashgraph
hs-source-dirs: src
build-depends: base >=4.12 && <4.13
, containers
, extra
, fgl
, graphviz
, safe
, text
-- hs-source-dirs:
default-language: Haskell2010
executable test
main-is: Main.hs
hs-source-dirs: src/test/
build-depends: base >=4.12 && <4.13
, containers
, extra
, graphviz
, hashgraph
, random
, safe
, text
, time
default-language: Haskell2010