1
1
mirror of https://github.com/coot/free-category.git synced 2024-11-26 10:13:56 +03:00
free-category/examples/examples.cabal

35 lines
1.1 KiB
Plaintext
Raw Normal View History

-- Initial examples.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: examples
version: 0.1.0.0
-- synopsis:
-- description:
license: MPL-2.0
license-file: LICENSE
author: Marcin Szamotulski
maintainer: profunctor@pm.me
-- copyright:
-- category:
build-type: Simple
extra-source-files: CHANGELOG.md
cabal-version: >=1.10
2018-12-16 19:18:30 +03:00
executable login-state-machine
main-is: LoginStateMachine.hs
-- exposed-modules:
-- other-modules:
-- other-extensions:
build-depends: base >=4.9 && <5
, free-category >= 0.0.1.0
, free-algebras >= 0.0.7.0
2018-12-16 19:18:30 +03:00
, QuickCheck
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
-fwarn-incomplete-record-updates
-fwarn-incomplete-uni-patterns
-fwarn-redundant-constraints
-fwarn-deprecations
2018-12-16 19:18:30 +03:00
-main-is LoginStateMachine