cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.33.0.
--
-- see: https://github.com/sol/hpack
--
-- hash: cf0803a47914ce38f8b1478f18cebd21c0666efecac0668508cf3839859c512f
name: dijkstra-simple
version: 0.1.0
synopsis: A simpler Dijkstra shortest paths implementation
description: Provides a simplistic Dijkstra implementation with some useful variations and generalizations.
category: graph, dijkstra
homepage: https://github.com/blackheaven/dijkstra-simple#readme
bug-reports: https://github.com/blackheaven/dijkstra-simple/issues
author: Gautier DI FOLCO
maintainer: gautier.difolco@gmail.com
copyright: Gautier DI FOLCO
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files:
changelog.md
README.md
source-repository head
type: git
location: https://github.com/blackheaven/dijkstra-simple
library
exposed-modules:
Graph.DijkstraSimple
Graph.DijkstraSimple.Weighters
other-modules:
Paths_dijkstra_simple
hs-source-dirs:
src
build-depends:
base >=4.7 && <5
, containers >=0.6.2.1 && <0.7
, fingertree >=0.1.4.0 && <0.1.5
default-language: Haskell2010
test-suite dijkstra-simple-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Graph.DijkstraSimpleSpec
Paths_dijkstra_simple
hs-source-dirs:
test
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.7 && <5
, containers >=0.6.2.1 && <0.7
, dijkstra-simple
, fingertree >=0.1.4.0 && <0.1.5
, hspec >=2.7.1 && <2.8
default-language: Haskell2010