avl-static-0.1.0.0: avl-static.cabal
-- Initial avl.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: avl-static
version: 0.1.0.0
synopsis: A compile-time balanced AVL tree.
description: A compile-time balanced AVL tree.
license: BSD3
license-file: LICENSE
author: Federico Lebrón
maintainer: federico.lebron@gmail.com
-- copyright:
category: Data
build-type: Simple
extra-source-files: test/Main.hs
cabal-version: >=1.10
library
exposed-modules: Data.Tree.AVL.Static, Data.Tree.AVL.Static.Internal
-- other-modules:
other-extensions: GADTs, ExistentialQuantification, DataKinds, InstanceSigs, StandaloneDeriving, KindSignatures, ScopedTypeVariables
build-depends: base >=4.6 && <4.7
-- hs-source-dirs:
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/fedelebron/AVL
test-suite avl-test
hs-source-dirs: test
x-uses-tf: true
type: exitcode-stdio-1.0
main-is: Main.hs
build-depends: base > 4, QuickCheck, test-framework >= 0.4.1, test-framework-quickcheck2, avl-static
default-language: Haskell2010