packages feed

qnap-decrypt-0.3.0: qnap-decrypt.cabal

cabal-version: >=1.10
name: qnap-decrypt
version: 0.3.0
license: BSD3
license-file: LICENSE
copyright: 2018 ALeX Kazik
maintainer: alex@kazik.de
author: ALeX Kazik
homepage: https://github.com/alexkazik/qnap-decrypt#readme
bug-reports: https://github.com/alexkazik/qnap-decrypt/issues
synopsis: Decrypt files encrypted by QNAP's Hybrid Backup Sync
description:
    Please see the README on Github at <https://github.com/alexkazik/qnap-decrypt#readme>
category: Cryptography
build-type: Simple
data-files:
    test/encrypted/c0
    test/encrypted/c1
    test/encrypted/c2
    test/encrypted/c3
    test/encrypted/c4
    test/encrypted/c5
    test/encrypted/u0
    test/encrypted/u1
    test/encrypted/u2
    test/encrypted/u3
    test/encrypted/u4
    test/encrypted/u5
    test/reference/c0
    test/reference/c1
    test/reference/c2
    test/reference/c3
    test/reference/c4
    test/reference/c5
    test/reference/u0
    test/reference/u1
    test/reference/u2
    test/reference/u3
    test/reference/u4
    test/reference/u5
extra-source-files:
    ChangeLog.md
    README.md

source-repository head
    type: git
    location: https://github.com/alexkazik/qnap-decrypt

library
    exposed-modules:
        Crypto.QNAP
        Data.Conduit.Crypto
    hs-source-dirs: src
    other-modules:
        Paths_qnap_decrypt
    default-language: Haskell2010
    build-depends:
        base >=4.10 && <5,
        binary >=0.6.4 && <0.9,
        bytestring >=0.10.0.0 && <0.11,
        cipher-aes128 >=0.1 && <0.8,
        conduit >=1.3.0 && <1.4,
        conduit-extra >=0.3.0 && <1.4,
        crypto-api >=0.13.3 && <0.14,
        directory >=1.2.7 && <1.4,
        streaming-commons >=0.1.0.0 && <0.2,
        tagged >=0.8.5 && <0.9,
        utf8-string >=1.0.1.1 && <1.1

executable qnap-decrypt
    main-is: Main.hs
    hs-source-dirs: app
    other-modules:
        Paths_qnap_decrypt
    default-language: Haskell2010
    build-depends:
        base >=4.10 && <5,
        binary >=0.6.4 && <0.9,
        bytestring >=0.10.0.0 && <0.11,
        cipher-aes128 >=0.1 && <0.8,
        conduit >=1.3.0 && <1.4,
        conduit-extra >=0.3.0 && <1.4,
        crypto-api >=0.13.3 && <0.14,
        directory >=1.2.7 && <1.4,
        filepath >=1.4.1.2 && <1.5,
        optparse-applicative >=0.14.2.0 && <0.15,
        qnap-decrypt -any,
        streaming-commons >=0.1.0.0 && <0.2,
        tagged >=0.8.5 && <0.9,
        utf8-string >=1.0.1.1 && <1.1

test-suite qnap-decrypt-test
    type: exitcode-stdio-1.0
    main-is: Spec.hs
    hs-source-dirs: test
    other-modules:
        Paths_qnap_decrypt
    default-language: Haskell2010
    build-depends:
        HUnit >=1.6.0.0 && <1.7,
        base >=4.10 && <5,
        binary >=0.6.4 && <0.9,
        bytestring >=0.10.0.0 && <0.11,
        cipher-aes128 >=0.1 && <0.8,
        conduit >=1.3.0 && <1.4,
        conduit-extra >=0.3.0 && <1.4,
        crypto-api >=0.13.3 && <0.14,
        directory >=1.2.7 && <1.4,
        filepath >=1.4.1.2 && <1.5,
        hspec >=2.4.8 && <2.5,
        qnap-decrypt -any,
        streaming-commons >=0.1.0.0 && <0.2,
        tagged >=0.8.5 && <0.9,
        temporary >=1.2.1.1 && <1.3,
        utf8-string >=1.0.1.1 && <1.1