From 4fd1105b865e5b20ef801c53bcefbd7a7d5474f0 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Sun, 28 Oct 2018 21:08:10 +0000 Subject: Initial commit --- verifuzz.cabal | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 verifuzz.cabal (limited to 'verifuzz.cabal') diff --git a/verifuzz.cabal b/verifuzz.cabal new file mode 100644 index 0000000..ec4ec70 --- /dev/null +++ b/verifuzz.cabal @@ -0,0 +1,21 @@ +name: verifuzz +version: 0.1.0.0 +-- synopsis: +-- description: +homepage: https://github.com/githubuser/verifuzz#readme +license: BSD3 +license-file: LICENSE +author: Author name here +maintainer: example@example.com +copyright: 2018 Author name here +category: Web +build-type: Simple +cabal-version: >=1.10 +extra-source-files: README.md + +executable verifuzz + hs-source-dirs: src + main-is: Main.hs + default-language: Haskell2010 + build-depends: base >= 4.7 && < 5 + , QuickCheck -- cgit