commit 1ef48519658f06f2e5bf400ded6cd04e8c7fcfb6 parent b556e76ed936e26f2b8b0c131060934f79291e4c Author: Jared Tobin <jared@jtobin.io> Date: Wed, 31 May 2023 12:13:58 +0400 Basic cabal setup. Diffstat:
A | cryptopals.cabal | | | 29 | +++++++++++++++++++++++++++++ |
A | lib/Cryptopals.hs | | | 4 | ++++ |
2 files changed, 33 insertions(+), 0 deletions(-)
diff --git a/cryptopals.cabal b/cryptopals.cabal @@ -0,0 +1,29 @@ +name: cryptopals +version: 0.1.0 +synopsis: Matasano's cryptopals exercises +homepage: http://github.com/jtobin/cryptopals +license: MIT +license-file: LICENSE +author: Jared Tobin +maintainer: jared@jtobin.io +build-type: Simple +cabal-version: >= 1.10 + +library + default-language: Haskell2010 + default-extensions: + DeriveFoldable + DeriveFunctor + DeriveTraversable + LambdaCase + RankNTypes + ScopedTypeVariables + TypeFamilies + ViewPatterns + hs-source-dirs: + lib + exposed-modules: + Cryptopals + build-depends: + base + diff --git a/lib/Cryptopals.hs b/lib/Cryptopals.hs @@ -0,0 +1,4 @@ + +module Cryptopals where + +