cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.34.4.
--
-- see: https://github.com/sol/hpack
--
-- hash: 8e3705f35c04c8624d79b602047356a0c0c44b172ff5bd4e6ceda14343b4303c

name:           I1M
version:        0.0.4
synopsis:       Code for the Haskell course taught at the University of Seville.
description:    En este paquete se encuentra los códigos de las librerías
                desarrolladas en el curso de
                <https://www.cs.us.es/~jalonso/cursos/i1m Informática>
                de 1º del Grado en Matemáticas de la Universidad de Sevilla.
category:       Education, Data Structures, Library
homepage:       https://github.com/jaalonso/I1M
bug-reports:    https://github.com/jaalonso/I1M/issues
author:         Jose A. Alonso
maintainer:     JoseA.Alonso@gmail.com
license:        GPL-2
license-file:   LICENSE
tested-with:
    GHC==8.4.3, GHC==8.6.5, GHC==8.10.4
build-type:     Simple
extra-source-files:
    ChangeLog.md
    README.org

source-repository head
  type: git
  location: https://github.com/jaalonso/I1M

library
  exposed-modules:
      I1M.Pila
      I1M.Cola
      I1M.ColaDePrioridad
      I1M.Conjunto
      I1M.Tabla
      I1M.ArbolBin
      I1M.Monticulo
      I1M.Pol
      I1M.PolOperaciones
      I1M.Grafo
      I1M.RecorridoEnProfundidad
      I1M.RecorridoEnAnchura
      I1M.DivideVenceras
      I1M.BusquedaEnEspaciosDeEstados
      I1M.BusquedaPrimeroElMejor
      I1M.BusquedaEnEscalada
      I1M.Dinamica
      I1M.Analizador
  other-modules:
      Paths_I1M
  hs-source-dirs:
      src
  ghc-options: -Wall
  build-depends:
      QuickCheck >=2.9.2 && <=2.14.2
    , array >=0.5.0 && <=0.5.4
    , base >=4.7 && <5
  default-language: Haskell2010

test-suite test
  type: exitcode-stdio-1.0
  main-is: Main.hs
  other-modules:
      ArbolBinPropiedades
      ColaDePrioridadPropiedades
      ColaPropiedades
      ConjuntoPropiedades
      MonticuloPropiedades
      PilaPropiedades
      PolOperacionesPropiedades
      PolPropiedades
      TablaPropiedades
      Paths_I1M
  hs-source-dirs:
      test
  build-depends:
      I1M
    , base >=4.7 && <5
    , tasty >=0.11 && <1.3
    , tasty-hunit >=0.9 && <0.10.1
    , tasty-quickcheck >=0.8 && <0.10.2
  default-language: Haskell2010