cryptoid/cryptoids.cabal
2025-07-13 22:57:57 +02:00

48 lines
1.4 KiB
Plaintext

name: cryptoids
version: 0.6.0.0
synopsis: Reversable and secure encoding of object ids as a bytestring
category: cryptography
author: Gregor Kleen <aethoago@141.li>
maintainer: Gregor Kleen <aethoago@141.li>
license: BSD3
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10
extra-source-files:
changes.md
source-repository head
type: git
location: https://gitea.uniworx.systems/haskell/cryptoids
library
exposed-modules:
Data.CryptoID
Data.CryptoID.Class
Data.CryptoID.Class.ImplicitNamespace
Data.CryptoID.Poly
Data.CryptoID.Poly.ImplicitNamespace
Data.CryptoID.ByteString
Data.CryptoID.ByteString.ImplicitNamespace
other-modules:
Paths_cryptoids
hs-source-dirs:
src
default-extensions: RankNTypes DataKinds GeneralizedNewtypeDeriving ViewPatterns RecordWildCards FlexibleContexts FlexibleInstances MultiParamTypeClasses TypeFamilies ConstraintKinds
ghc-options: -Wall
build-depends:
base >=4.19 && <5
, aeson >= 2.2.3.0 && <3
, binary >=0.8.9 && <0.9
, bytestring >=0.12 && <1
, crypton >=1.0.4 && <2
, deepseq >=1.5.1 && <2
, directory >=1.3.8.5 && <2
, exceptions >=0.10.7 && <0.11
, filepath >=1.4.301 && <2
, hashable >=1.4.7 && <2
, http-api-data >=0.6.2 && <0.7
, memory >=0.18 && <0.19
, path-pieces >=0.2.1 && <0.3
default-language: Haskell2010