Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
0.1.3.0: 2026-07-01
* drop unused dependencies (memory, bytes, crypton, transformers, void)
* replace C FFI float/double conversions with GHC.Float casts (identical hashes)

0.1.2.0: 2025-01-13
* replace cryptonite (deprecated) with crypton

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# LargeHashable

[![BuildStatus](https://github.com/factisresearch/large-hashable/actions/workflows/haskell-ci.yml/badge.svg?branch=master)](https://github.com/factisresearch/large-hashable/actions/workflows/haskell-ci.yml/badge.svg?branch=master)
[![BuildStatus](https://github.com/factisresearch/large-hashable/actions/workflows/haskell-ci.yml/badge.svg?branch=master)](https://github.com/factisresearch/large-hashable/actions/workflows/haskell-ci.yml)
[![Hackage](https://img.shields.io/hackage/v/large-hashable.svg)](http://hackage.haskell.org/package/large-hashable)

Efficiently hash Haskell values with MD5, SHA256, SHA512 and other
Expand Down
8 changes: 5 additions & 3 deletions large-hashable.cabal
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
name: large-hashable
version: 0.1.3.0
synopsis: Efficiently hash (large) Haskell values
description: Please see README.md
description: Efficiently hash Haskell values with MD5, SHA256, SHA512 and other hashing
algorithms.
homepage: https://github.com/factisresearch/large-hashable
license: BSD3
license-file: LICENSE
Expand All @@ -12,10 +13,11 @@ copyright: 2015 - 2017 factis research GmbH, 2018 - 2023 medilyse GmbH
category: Web
build-type: Simple
cabal-version: 2.0
extra-source-files:
cbits/md5.h
extra-doc-files:
README.md
ChangeLog
extra-source-files:
cbits/md5.h
default.nix
stack.yaml
test/bigfile.txt
Expand Down
Loading