Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.3.0.3: fix for ghc-9.6/base-4.18.1.0 #33

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion rncryptor.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: rncryptor
version: 0.3.0.2
version: 0.3.0.3
synopsis: Haskell implementation of the RNCryptor file format
description: Pure Haskell implementation of the RNCrytor spec.
license: MIT
Expand Down
1 change: 1 addition & 0 deletions src/Crypto/RNCryptor/V3/Decrypt.hs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ module Crypto.RNCryptor.V3.Decrypt
, decryptStream
) where

import Control.Monad (unless)
import Control.Monad.State
import Control.Exception (throwIO)
import Crypto.Cipher.AES (AES256)
Expand Down
12 changes: 12 additions & 0 deletions stack-9.4.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
resolver: lts-21.20

packages:
- '.'

flags:
rncryptor:
fastpbkdf2: false

extra-deps:
- bytestring-arbitrary-0.1.0
- fastpbkdf2-0.1.0.0
12 changes: 8 additions & 4 deletions stack.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
resolver: lts-6.5
install-ghc: true
flags: {}
# resolver: lts-21.20
resolver: nightly-2023-11-15

packages:
- '.'
system-ghc: false

flags:
rncryptor:
fastpbkdf2: false

extra-deps:
- bytestring-arbitrary-0.1.0
- fastpbkdf2-0.1.0.0
Loading