Half-completed crypto experiments in Haskell.
cabal-version:      2.4
name:               halo2
version:            0.1.0.0
synopsis:           Playing with Halo-y things.
-- description:
homepage:           https://nest.pijul.com/sellout/crypto-junk
bug-reports:        https://nest.pijul.com/sellout/crypto-junk/discussions
license:            AGPL-3.0-or-later
author:             Greg Pfeil
maintainer:         greg@technomadic.org
copyright:          2022 Greg Pfeil
category:           Cryptography
extra-source-files: CHANGELOG.md

library
    exposed-modules:  PLONKish
    ghc-options:     -Weverything
    build-depends:    base
                    , containers
                    , fin
                    , vec
    -- These are required by @-Weverything@.
    default-extensions: DerivingStrategies
                      , ImportQualifiedPost
                      , NoImplicitPrelude
    default-language: Haskell2010