purr

password generation and secret sharing
Log | Files | Refs | README | LICENSE

package.yaml (1869B)


      1 name:                Purr
      2 version:             0.3.0
      3 license:             ISC
      4 author:              "James Eversole"
      5 maintainer:          "james@eversole.co"
      6 copyright:           "2022 James Eversole"
      7 
      8 extra-source-files:
      9 - README
     10 - ChangeLog.md
     11 
     12 default-extensions:
     13 - ConstraintKinds
     14 - DeriveGeneric
     15 - FlexibleContexts
     16 - FlexibleInstances
     17 - GeneralizedNewtypeDeriving
     18 - OverloadedStrings
     19 - ScopedTypeVariables
     20 
     21 # Metadata used when publishing your package
     22 # synopsis:            Short description of your package
     23 # category:            Web
     24 
     25 # To avoid duplicated efforts in documentation and dealing with the
     26 # complications of embedding Haddock markup inside cabal files, it is
     27 # common to point users to the README.md file.
     28 description:         https://git.eversole.co/James/Purr
     29 
     30 dependencies:
     31 - base >= 4.7 
     32 - base64-bytestring >= 1.2.0.0
     33 - blaze-html >= 0.9.1.0
     34 - bytestring >= 0.10.12.1
     35 - containers >= 0.6.4.1
     36 - dhall >= 1.40
     37 - file-embed == 0.0.15.0
     38 - http-types >= 0.12.3
     39 - iso8601-time >= 0.1.5 
     40 - mtl >= 2.2.2 
     41 - random >= 1.2
     42 - saltine >= 0.2.0.0
     43 - scotty >= 0.12
     44 - shakespeare >= 2.0.20
     45 - sqlite-simple >= 0.4.18.0
     46 - split >= 0.2.3.4
     47 - time >= 1.9
     48 - text >= 1.2.5.0
     49 - utf8-string == 1.0.2
     50 - wai-extra >= 3.1.12.1
     51 - wai-middleware-static >= 0.5 
     52 
     53 library:
     54   source-dirs: src
     55 
     56 executables:
     57   Purr-musl:
     58     main:                Main.hs
     59     source-dirs:         app
     60     ghc-options:
     61     - -threaded
     62     - -rtsopts
     63     - -with-rtsopts=-N
     64     #- -static 
     65     #- -optl-static 
     66     #- -optl-pthread 
     67     - -fPIC
     68     dependencies:
     69     - Purr
     70 
     71     #tests:
     72     #  Purr-test:
     73     #    main:                Spec.hs
     74     #    source-dirs:         test
     75     #    ghc-options:
     76     #    - -threaded
     77     #    - -rtsopts
     78     #    - -with-rtsopts=-N
     79     #    - -static 
     80     #    - -optl-static 
     81     #    - -optl-pthread 
     82     #    - -fPIC
     83     #    dependencies:
     84     #    - Purr