-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathecstasy.cabal
55 lines (49 loc) · 1.92 KB
/
ecstasy.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
50
51
52
53
54
55
-- Initial ecstasy.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: ecstasy
version: 0.3.0.0
synopsis:
A GHC.Generics based entity component system.
description:
Ecstasy is an entity-component system for Haskell. It's inspired by
<https://hackage.haskell.org/package/apecs apecs>, but makes the design
decision to focus on being idiomatic rather than being fast. Maybe. I haven't
actually benchmarked it.
.
We achieve being idiomatic by using 'GHC.Generics' and tricky type families
to derive performant data stores given only a record of the desired
components.
license: BSD3
license-file: LICENSE
author: Sandy Maguire
maintainer: [email protected]
homepage: http://github.com/isovector/ecstasy/
bug-reports: http://github.com/isovector/ecstasy/issues
-- copyright:
category: Game
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
tested-with: GHC == 7.8.4, GHC == 7.10.3, GHC == 8.0.2, GHC == 8.2.1
source-repository head
type: git
location: https://github.com/isovector/ecstasy.git
library
exposed-modules: Data.Ecstasy
, Data.Ecstasy.Types
, Data.Ecstasy.Internal
, Data.Ecstasy.Internal.Deriving
-- other-extensions:
build-depends: base >=4.9 && <5, containers, mtl, transformers, kan-extensions, microlens
hs-source-dirs: src
default-language: Haskell2010
Test-Suite tests
type: exitcode-stdio-1.0
default-language: Haskell2010
other-modules: InspectionSpec
hs-Source-Dirs: test
main-is: Main.hs
build-depends: base >=4.9 && <5, containers, mtl, transformers, hspec, ecstasy, kan-extensions
if impl(ghc > 8.0.1)
build-depends: inspection-testing >= 0.3 && <0.4
, template-haskell