-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhaskell-worlds.cabal
49 lines (45 loc) · 1.28 KB
/
haskell-worlds.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
41
42
43
44
45
46
47
48
49
cabal-version: 2.4
-- Initial package description 'haskell-ecs.cabal' generated by 'cabal
-- init'. For further documentation, see
-- http://haskell.org/cabal/users-guide/
name: haskell-worlds
version: 0.1.0.0
-- synopsis:
-- description:
-- bug-reports:
license: BSD-3-Clause
license-file: LICENSE
author: Simon Reitinger
maintainer: [email protected]
-- copyright:
-- category:
extra-source-files: CHANGELOG.md
library
exposed-modules: HWorlds, HWorlds.Core, HWorlds.Query, HWorlds.Store.HashMap, HWorlds.Store.Map
-- other-modules:
-- other-extensions:
build-depends:
base ^>=4.14.1.0,
bitvec,
vector,
containers,
transformers,
hashtables
hs-source-dirs: src
default-language: Haskell2010
executable bench
exposed-modules: Main.hs
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends: base ^>=4.14.1.0, apecs, gauge, haskell-worlds
hs-source-dirs: bench
default-language: Haskell2010
executable app
exposed-modules: Main.hs
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends: base ^>=4.14.1.0, haskell-worlds
hs-source-dirs: app
default-language: Haskell2010