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
|
name: active
version: 0.1.0.16
synopsis: Abstractions for animation
description: "Active" abstraction for animated things with finite start and end times.
license: BSD3
license-file: LICENSE
author: Brent Yorgey
maintainer: byorgey@cis.upenn.edu
copyright: (c) 2011 Brent Yorgey
category: Data
build-type: Simple
cabal-version: >=1.10
extra-source-files: CHANGES
tested-with: GHC == 6.12.3, GHC == 7.0.4, GHC == 7.2.1, GHC == 7.4.1, GHC == 7.6.1
bug-reports: https://github.com/diagrams/active/issues
source-repository head
type: git
location: https://github.com/diagrams/active.git
library
exposed-modules: Data.Active
build-depends: base >= 4.0 && < 4.8,
array >= 0.3 && < 0.6,
semigroups >= 0.1 && < 0.16,
semigroupoids >= 1.2 && < 4.3,
vector-space >= 0.8 && < 0.9,
newtype >= 0.2 && < 0.3
hs-source-dirs: src
default-language: Haskell2010
test-suite active-tests
type: exitcode-stdio-1.0
main-is: active-tests.hs
build-depends: base >= 4.0 && < 4.8,
array >= 0.3 && < 0.6,
semigroups >= 0.1 && < 0.16,
semigroupoids >= 1.2 && < 4.3,
vector-space >= 0.8 && < 0.9,
newtype >= 0.2 && < 0.3,
QuickCheck >= 2.4.2 && < 2.8
hs-source-dirs: src, test
default-language: Haskell2010
|