1cabal-version: 3.42name: datepicker3version: 1.0.14synopsis: An fzf-like tool to interactively select a date in a provided format5-- description:6license: GPL-3.0-or-later7license-file: LICENSE8author: Sören Tempel9maintainer: soeren+git@soeren-tempel.net10category: System11build-type: Simple12extra-doc-files: README.md1314common warnings15 ghc-options: -Wall1617library18 import: warnings19 ghc-options: -threaded20 exposed-modules: DatePicker.UI21 , DatePicker.UI.Month22 , DatePicker.UI.Time23 , DatePicker.CmdLine24 , DatePicker.Util25 build-depends: base >=4.16.0.026 , time >=1.12.227 , vty >=6.228 , optparse-applicative >=0.17.0.029 hs-source-dirs: lib30 default-language: GHC20213132executable datepicker33 import: warnings34 ghc-options: -threaded35 main-is: Main.hs36 build-depends: base37 , datepicker38 , time39 , vty40 , vty-unix41 , unix42 hs-source-dirs: app43 default-language: GHC20214445test-suite datepicker-test46 import: warnings47 ghc-options: -Wno-orphans48 default-language: GHC202149 type: exitcode-stdio-1.050 hs-source-dirs: test51 main-is: Main.hs52 other-modules: Tmux53 , Util54 , QuickCheck55 build-depends:56 base,57 mtl,58 bytestring,59 datepicker,60 time,61 tasty,62 tasty-hunit >=0.10,63 tasty-tmux >=0.1.0.5,64 tasty-quickcheck >=0.10.2