name: elenco-albero version: 1.0.0 build-type: Simple cabal-version: >=1.10 synopsis: make tree from a list description: convert a flat list of nodes with optional parents to a (usually: if any nodes are assigned to parents) shorter list of nodes with nested children. Possible application: tree-like menu in web apps. author: Imants Cekusins maintainer: Imants Cekusins license: PublicDomain license-file: PublicDomain category: Tree extra-source-files: changelog.md, Readme.md homepage: https://bitbucket.org/ciezbit/elenco-albero source-repository head type: git location: ssh://bitbucket.org/ciezbit/elenco-albero.git library exposed-modules: Data.Elenco.Type.In Data.Elenco.Type.Out Data.Elenco.Api other-modules: Data.Elenco.Albero ghc-options: -fwarn-unused-imports build-depends: base >=4.7 && <5.0, containers hs-source-dirs: src default-language: Haskell2010 default-extensions: FlexibleInstances MultiParamTypeClasses InstanceSigs test-suite spec default-language:Haskell2010 type: exitcode-stdio-1.0 ghc-options: -fwarn-unused-imports hs-source-dirs: test, src default-extensions: FlexibleInstances MultiParamTypeClasses InstanceSigs main-is: Main.hs other-modules: MakeTreeTest.ApiTest build-depends: base >= 4.7, hspec >= 2.1.7, QuickCheck >= 2.8.1