packages feed

data-forest-0.1.0.11: data-forest.cabal

cabal-version: 3.0

name: data-forest
version: 0.1.0.11
category: Data Structures
synopsis: A simple multi-way tree data structure

description:
    A forest is a collection of zero or more trees.

homepage: https://github.com/typeclasses/data-forest

author: Chris Martin
maintainer: Chris Martin, Julie Moronuki

copyright: 2017 Mission Valley Software LLC
license: Apache-2.0
license-file: license.txt

extra-source-files: *.md

common base
  default-language: GHC2021
  default-extensions: NoImplicitPrelude
  ghc-options: -Wall
  build-depends:
    , base ^>= 4.16 || ^>= 4.17 || ^>= 4.18

library
  import: base
  hs-source-dirs: src
  exposed-modules:
      Data.Forest

test-suite test
  import: base
  type: exitcode-stdio-1.0
  main-is: Main.hs
  hs-source-dirs: test
  build-depends:
    , data-forest