-- Initial unbound-generics.cabal generated by cabal init. For further -- documentation, see http://haskell.org/cabal/users-guide/ name: unbound-generics version: 0.1 x-revision: 1 synopsis: Reimplementation of Unbound using GHC Generics description: Specify the binding structure of your data type with an expressive set of type combinators, and unbound-generics handles the rest! Automatically derives alpha-equivalence, free variable calculation, capture-avoiding substitution, and more. See @Unbound.Generics.LocallyNameless@ to get started. . This is an independent re-implementation of but using instead of . See the accompanying README for some porting notes. homepage: http://github.com/lambdageek/unbound-generics bug-reports: http://github.com/lambdageek/unbound-generics/issues license: BSD3 license-file: LICENSE author: Aleksey Kliger maintainer: aleksey@lambdageek.org copyright: (c) 2014, Aleksey Kliger category: Language build-type: Simple extra-source-files: examples/*.hs, README.md, Changelog.md cabal-version: >=1.10 library exposed-modules: Unbound.Generics.LocallyNameless Unbound.Generics.LocallyNameless.Name Unbound.Generics.LocallyNameless.Fresh Unbound.Generics.LocallyNameless.LFresh Unbound.Generics.LocallyNameless.Alpha Unbound.Generics.LocallyNameless.Bind Unbound.Generics.LocallyNameless.Rebind Unbound.Generics.LocallyNameless.Embed Unbound.Generics.LocallyNameless.Operations Unbound.Generics.LocallyNameless.Unsafe Unbound.Generics.LocallyNameless.Internal.Fold Unbound.Generics.LocallyNameless.Rec Unbound.Generics.PermM Unbound.Generics.LocallyNameless.Subst -- other-modules: -- other-extensions: build-depends: base >=4.6 && <5, mtl >= 2.1, transformers >= 0.3 && < 0.6, transformers-compat >= 0.3, containers == 0.5.*, contravariant >= 0.5 hs-source-dirs: src default-language: Haskell2010 ghc-options: -Wall Test-Suite test-unbound-generics type: exitcode-stdio-1.0 main-is: test-main.hs other-modules: Calc TestCalc ParallelReduction TestParallelReduction PropOpenClose TinyLam TestACompare build-depends: base, mtl, tasty, tasty-hunit, tasty-quickcheck, QuickCheck >= 2.7 && < 3, unbound-generics hs-source-dirs: test default-language: Haskell2010 ghc-options: -Wall source-repository head type: git location: git://github.com/lambdageek/unbound-generics.git