cabal-version: 3.0 name: queue-sheet version: 0.8.0.1 x-revision: 1 synopsis: queue sheet utility description: This package provides a utility for creating queue sheets. Please see the README on GitHub at . homepage: https://github.com/ExtremaIS/queue-sheet-haskell#readme bug-reports: https://github.com/ExtremaIS/queue-sheet-haskell/issues license: MIT license-file: LICENSE author: Travis Cardwell maintainer: Travis Cardwell copyright: Copyright (c) 2020-2025 Travis Cardwell category: Utils build-type: Simple extra-doc-files: CHANGELOG.md README.md tested-with: GHC ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.2.8 || ==9.4.8 || ==9.6.7 || ==9.8.4 || ==9.10.1 || ==9.12.2 source-repository head type: git location: https://github.com/ExtremaIS/queue-sheet-haskell.git flag optparse-applicative_ge_0_18 description: Use optparse-applicative 0.18 or newer default: True manual: False library hs-source-dirs: src exposed-modules: QueueSheet , QueueSheet.Build , QueueSheet.File , QueueSheet.Template , QueueSheet.Types other-modules: Paths_queue_sheet autogen-modules: Paths_queue_sheet build-depends: aeson >= 1.4.7.1 && <2.3 , base >=4.13 && <4.22 , bytestring >=0.10.10.1 && <0.13 , directory >=1.3.6 && <1.4 , filepath >=1.4.2.1 && <1.6 , ginger >=0.10.1 && <0.11 , process >=1.6.9 && <1.7 , scientific >=0.3.6.2 && <0.4 , text >=1.2.4 && <2.2 , transformers >=0.5.6.2 && <0.7 , ttc >=1.1 && <1.6 , vector >=0.12.1.2 && <0.14 , yaml >=0.11.5 && <0.12 default-language: Haskell2010 ghc-options: -Wall executable queue-sheet hs-source-dirs: app main-is: queue-sheet.hs other-modules: LibOA build-depends: base , queue-sheet if flag(optparse-applicative_ge_0_18) build-depends: optparse-applicative >=0.18 && <0.19 , prettyprinter >=1.7.1 && <1.8 else build-depends: ansi-wl-pprint >=0.6.9 && <1.1 , optparse-applicative >=0.15.1 && <0.18 default-language: Haskell2010 ghc-options: -Wall test-suite queue-sheet-test type: exitcode-stdio-1.0 hs-source-dirs: test main-is: Spec.hs other-modules: QueueSheet.File.Test build-depends: base , bytestring , queue-sheet , tasty >=1.2.3 && <1.6 , tasty-hunit >=0.10.0.3 && <0.11 default-language: Haskell2010 ghc-options: -Wall