Skip to content

Commit

Permalink
Update from Hackage at 2018-10-29T23:50:47Z
Browse files Browse the repository at this point in the history
  • Loading branch information
all-cabal-tool committed Oct 29, 2018
1 parent d47faac commit a3dbd93
Show file tree
Hide file tree
Showing 2 changed files with 171 additions and 0 deletions.
170 changes: 170 additions & 0 deletions cacophony/0.10.1/cacophony.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,170 @@
-- This file has been generated from package.yaml by hpack version 0.28.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: 272fee6928a83c4ebb4abfab6ac7c6cb68e59c5c6b0cd1d52cfbc96d04e43875

name: cacophony
version: 0.10.1
synopsis: A library implementing the Noise protocol.
description: This library implements the <https://noiseprotocol.org Noise> protocol.
category: Cryptography
homepage: https://github.com/centromere/cacophony#readme
bug-reports: https://github.com/centromere/cacophony/issues
maintainer: John Galt <jgalt@centromere.net>
license: PublicDomain
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10
extra-source-files:
.travis.yml
changelog.md
LICENSE
package.yaml
README.md
stack.yaml
tests/.hlint
tools/pretty-print/format-vectors.py
tools/pretty-print/vector-template.jinja
vectors/cacophony.txt

source-repository head
type: git
location: https://github.com/centromere/cacophony

flag build-tools
description: Build tools
manual: True
default: False

library
hs-source-dirs:
src
default-extensions: OverloadedStrings
ghc-options: -Wall
build-depends:
base >=4.9 && <5
, bytestring
, cryptonite >=0.22
, exceptions
, free
, lens
, memory
, monad-coroutine
, mtl
, safe-exceptions
, transformers
exposed-modules:
Crypto.Noise
Crypto.Noise.Cipher
Crypto.Noise.Cipher.AESGCM
Crypto.Noise.Cipher.ChaChaPoly1305
Crypto.Noise.DH
Crypto.Noise.DH.Curve25519
Crypto.Noise.DH.Curve448
Crypto.Noise.Exception
Crypto.Noise.HandshakePatterns
Crypto.Noise.Hash
Crypto.Noise.Hash.BLAKE2b
Crypto.Noise.Hash.BLAKE2s
Crypto.Noise.Hash.SHA256
Crypto.Noise.Hash.SHA512
Crypto.Noise.Internal.CipherState
Crypto.Noise.Internal.Handshake.Interpreter
Crypto.Noise.Internal.Handshake.Pattern
Crypto.Noise.Internal.Handshake.State
Crypto.Noise.Internal.Handshake.Validation
Crypto.Noise.Internal.NoiseState
Crypto.Noise.Internal.SymmetricState
Crypto.Noise.Validation
other-modules:
Paths_cacophony
default-language: Haskell2010

executable noise-repl
main-is: Main.hs
hs-source-dirs:
tools/noise-repl
default-extensions: OverloadedStrings
ghc-options: -Wall -O2 -rtsopts -threaded -with-rtsopts=-N
build-depends:
base >=4.9 && <5
if flag(build-tools)
build-depends:
attoparsec
, base16-bytestring
, base64-bytestring
, bytestring
, cacophony
, haskeline
, network
, process
else
buildable: False
other-modules:
Client
Options
Pipe
Socket
Types
Paths_cacophony
default-language: Haskell2010

test-suite hlint
type: exitcode-stdio-1.0
main-is: hlint.hs
other-modules:
Paths_cacophony
hs-source-dirs:
tests/hlint
ghc-options: -Wall -O2 -rtsopts -threaded -with-rtsopts=-N
build-depends:
base >=4.9 && <5
, hlint
default-language: Haskell2010

test-suite vectors
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs:
tests/vectors
default-extensions: OverloadedStrings
ghc-options: -Wall -O2 -rtsopts -threaded -with-rtsopts=-N
build-depends:
aeson
, attoparsec
, base >=4.9 && <5
, base16-bytestring
, bytestring
, cacophony
, directory
, text
other-modules:
Generate
Keys
Types
VectorFile
Verify
Paths_cacophony
default-language: Haskell2010

benchmark bench
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs:
benchmarks
default-extensions: OverloadedStrings
ghc-options: -Wall -O2 -rtsopts -threaded -with-rtsopts=-N
build-depends:
async
, base >=4.9 && <5
, base16-bytestring
, bytestring
, cacophony
, criterion
, deepseq
other-modules:
Keys
Types
Paths_cacophony
default-language: Haskell2010
1 change: 1 addition & 0 deletions cacophony/0.10.1/cacophony.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"package-hashes":{"MD5":"bc19e2f12b197ab40f22595203693560","Skein512_512":"9ece50aea35ae9e857aaf681a3198fd82f1c4df0e4c299c1c5867da7b6c893deb84e1b7af2f52d6a986b701ab643b6cca2a9cb71707b55d9cda0b58ce9ca677d","SHA1":"28fc8fc1351a3f87b1892627f139d129e3b7045e","SHA512":"4ce70aff1cdc736ba80d5b04ecc5a7bb4afb2ea4b0ef19823abf18b8a37e69cd09fb1b2f5dc6cd6b65a8feec6c5a020b63da477f576e9ddf29efe9602c5614a8","SHA256":"52c5ac525767c89e103fcf50ebf8db2a9425904abea2e570b37c7fdf2a013bf1"},"package-locations":["https://hackage.haskell.org/package/cacophony-0.10.1/cacophony-0.10.1.tar.gz","https://s3.amazonaws.com/hackage.fpcomplete.com/package/cacophony-0.10.1.tar.gz"],"package-size":245548}

0 comments on commit a3dbd93

Please sign in to comment.