diff options
author | Justin Bedo <cu@cua0.org> | 2022-12-16 10:57:55 +1100 |
---|---|---|
committer | Justin Bedo <cu@cua0.org> | 2022-12-31 17:28:29 +1100 |
commit | e318b40cfc1a3079375a015a651b1b44f6279ad0 (patch) | |
tree | 40a72f1b807fd77a1dd53ebf3f0cc284e65f30ad /ppl.cabal |
init
Diffstat (limited to 'ppl.cabal')
-rw-r--r-- | ppl.cabal | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/ppl.cabal b/ppl.cabal new file mode 100644 index 0000000..b3b5533 --- /dev/null +++ b/ppl.cabal @@ -0,0 +1,31 @@ +cabal-version: 1.12 + +-- This file has been generated from package.yaml by hpack version 0.34.7. +-- +-- see: https://github.com/sol/hpack + +name: ppl +version: 0.0.1 +synopsis: Reimplementation of LazyPPL +maintainer: Justin Bedo <cu@cua0.org> +license: MIT +build-type: Simple + +library + exposed-modules: + PPL + PPL.Distr + PPL.Sampling + other-modules: + PPL.Internal + Paths_ppl + hs-source-dirs: + src + build-depends: + base >=4.9 && <5 + , containers + , log-domain + , random + , template-haskell + , transformers + default-language: Haskell2010 |