packages feed

wild-bind-0.1.2.14: wild-bind.cabal

name:                   wild-bind
version:                0.1.2.14
author:                 Toshio Ito <debug.ito@gmail.com>
maintainer:             Toshio Ito <debug.ito@gmail.com>
license:                BSD3
license-file:           LICENSE
synopsis:               Dynamic key binding framework
description:            Dynamic key binding framework. See <https://github.com/debug-ito/wild-bind>
category:               UserInterface
cabal-version:          2.0
build-type:             Simple
extra-source-files:     README.md, ChangeLog.md
homepage:               https://github.com/debug-ito/wild-bind
bug-reports:            https://github.com/debug-ito/wild-bind/issues

library
  default-language:     Haskell2010
  hs-source-dirs:       src
  ghc-options:          -Wall -fno-warn-unused-imports
  other-extensions:     GeneralizedNewtypeDeriving RankNTypes OverloadedStrings
  exposed-modules:      WildBind,
                        WildBind.Binding,
                        WildBind.FrontEnd,
                        WildBind.Description,
                        WildBind.Exec,
                        WildBind.Input.NumPad,
                        WildBind.Seq
  -- other-modules:        
  build-depends:        base ^>=4.14.3 || ^>=4.15.0 || ^>=4.16.0 || ^>=4.17.0 || ^>=4.18.0 || ^>=4.19.0 || ^>=4.20.0 || ^>=4.21.0 || ^>=4.22.0,
                        text ^>=1.2.4 || ^>=2.0.1 || ^>=2.1,
                        containers ^>=0.6.4 || ^>=0.7 || ^>=0.8,
                        transformers ^>=0.5.6 || ^>=0.6.1,
                        semigroups ^>=0.20

-- executable wild-bind
--   default-language:     Haskell2010
--   hs-source-dirs:       src
--   main-is:              Main.hs
--   ghc-options:          -Wall -fno-warn-unused-imports
--   -- other-modules:       
--   -- other-extensions:    
--   build-depends:        base >=4 && <5

test-suite spec
  type:                 exitcode-stdio-1.0
  default-language:     Haskell2010
  hs-source-dirs:       test
  ghc-options:          -Wall -fno-warn-unused-imports "-with-rtsopts=-M512m"
  main-is:              Spec.hs
  other-extensions:     RankNTypes OverloadedStrings FlexibleInstances MultiParamTypeClasses
  other-modules:        WildBind.ExecSpec,
                        WildBind.BindingSpec,
                        WildBind.SeqSpec,
                        WildBind.ForTest
  build-tool-depends:   hspec-discover:hspec-discover
  build-depends:        base ^>=4.14.3 || ^>=4.15.0 || ^>=4.16.0 || ^>=4.17.0 || ^>=4.18.0 || ^>=4.19.0 || ^>=4.20.0 || ^>=4.21.0 || ^>=4.22.0,
                        wild-bind,
                        transformers ^>=0.5.6 || ^>=0.6.1,
                        hspec ^>=2.11.12,
                        QuickCheck ^>=2.15.0 || ^>=2.16.0,
                        stm ^>=2.5.0,
                        microlens ^>=0.4.14 || ^>=0.5.0

source-repository head
  type:                 git
  location:             https://github.com/debug-ito/wild-bind.git