46 lines
1.5 KiB
Plaintext
46 lines
1.5 KiB
Plaintext
name: filepath-crypto
|
|
version: 0.2.0.0
|
|
cabal-version: >=1.10
|
|
build-type: Simple
|
|
license: BSD3
|
|
license-file: LICENSE
|
|
maintainer: Gregor Kleen <aethoago@141.li>
|
|
synopsis: Reversable and secure encoding of object ids as filepaths
|
|
category: cryptography
|
|
author: Gregor Kleen <aethoago@141.li>
|
|
extra-source-files:
|
|
changes.md
|
|
|
|
source-repository head
|
|
type: git
|
|
location: https://git.rheperire.org/cryptoids/filepath-crypto
|
|
|
|
library
|
|
exposed-modules:
|
|
System.FilePath.Cryptographic
|
|
System.FilePath.Cryptographic.ImplicitNamespace
|
|
Data.Binary.SerializationLength
|
|
Data.Binary.SerializationLength.TH
|
|
build-depends:
|
|
base >=4.10.1.0 && <5,
|
|
binary >=0.8.5.1 && <0.9,
|
|
bytestring >=0.10.8.2 && <0.13,
|
|
case-insensitive >=1.2.0.10 && <2,
|
|
cryptoids >=0.6.0.0 && <0.7,
|
|
exceptions >=0.8.3 && <0.11,
|
|
filepath >=1.4.1.2 && <2,
|
|
sandi >=0.4.1 && <0.6,
|
|
template-haskell >=2.12.0.0 && <3
|
|
default-language: Haskell2010
|
|
default-extensions: KindSignatures ViewPatterns FlexibleContexts
|
|
GeneralizedNewtypeDeriving PatternGuards RecordWildCards DataKinds
|
|
DeriveDataTypeable DeriveGeneric FlexibleInstances
|
|
MultiParamTypeClasses TypeFamilies ConstraintKinds
|
|
other-extensions: ScopedTypeVariables
|
|
hs-source-dirs: src
|
|
other-modules:
|
|
Data.Binary.SerializationLength.Class
|
|
Paths_filepath_crypto
|
|
ghc-options: -Wall -fno-warn-name-shadowing
|
|
|