commit a59d3770529a4236dadc111ffbf484983d718e82
parent 72e47db23d8bebec7a570a66a91252b1d04de424
Author: Jared Tobin <jared@jtobin.io>
Date: Mon, 9 Sep 2024 12:08:57 +0400
meta: minor cabal file tweaks (remove binary dep)
Diffstat:
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/ppad-sha256.cabal b/ppad-sha256.cabal
@@ -1,7 +1,7 @@
cabal-version: 3.0
name: ppad-sha256
version: 0.1.0
-synopsis: The SHA-256 hashing algorithm
+synopsis: The SHA-256 algorithm
license: MIT
license-file: LICENSE
author: Jared Tobin
@@ -11,8 +11,7 @@ build-type: Simple
tested-with: GHC == { 9.6.4 }
extra-doc-files: CHANGELOG
description:
- A pure Haskell implementation of the SHA-256 hashing algorithm as
- specified by e.g. NIST FIPS 180-4 or RFC6234.
+ A pure Haskell implementation of SHA-256 as specified by RFC 6234.
source-repository head
type: git
@@ -27,6 +26,5 @@ library
Crypto.Hash.SHA256
build-depends:
base
- , binary
, bytestring