treeseq-1.0.0.20180213: treeseq.cabal
name: treeseq
-- PVP: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 1.0.0.20180213
category: Data Structures
synopsis: Library for a multi-way tree (rose tree), using Seq (finger tree) for forests
description: Like 'Data.Tree' of @containers@,
but use 'Data.Sequence' instead of 'Data.List' for forests ('Trees').
extra-doc-files:
license: GPL-3
license-file: COPYING
stability: experimental
author: Julien Moutinho <julm+treeseq@autogeree.net>
maintainer: Julien Moutinho <julm+treeseq@autogeree.net>
bug-reports: Julien Moutinho <julm+treeseq@autogeree.net>
-- homepage:
build-type: Simple
cabal-version: >= 1.18
tested-with: GHC==8.2.2
extra-source-files:
stack.yaml
extra-tmp-files:
Source-Repository head
location: git://git.autogeree.net/treeseq
type: git
Library
exposed-modules:
Data.TreeSeq.Strict
Data.TreeSeq.Strict.Zipper
default-language: Haskell2010
default-extensions:
ghc-options:
-Wall
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-fno-warn-tabs
-- -fhide-source-paths
build-depends:
base >= 4.10 && < 5
, containers >= 0.5