-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.yaml
86 lines (77 loc) · 1.8 KB
/
package.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
name: magic-wormhole
version: 0.3.4
synopsis: Interact with Magic Wormhole
description: |
Magic Wormhole is a scheme to get things from one computer to another,
safely.
This is a library for client-side interactions with a Magic Wormhole server.
author:
- "Jonathan M. Lange <[email protected]>"
- "Ramakrishnan Muthukrishnan <[email protected]>"
- "Jean-Paul Calderone <[email protected]>"
maintainer: Least Authority TFA GmbH
license: Apache
license-file: LICENSE
github: leastauthority/haskell-magic-wormhole
category: Crypto
ghc-options: -Wall -Werror=incomplete-patterns
default-extensions:
- NoImplicitPrelude
- OverloadedStrings
- TypeApplications
dependencies:
- base >= 4.6 && < 5
- protolude >= 0.3.0 && < 0.4
library:
source-dirs: src
dependencies:
- aeson
- bytestring
- containers
- cryptonite
- hashable
- memory
- network
- network-uri
- saltine >= 0.2.0.0
- spake2 >= 0.4.3
- stm
- unordered-containers
- websockets >= 0.8.0.0
executables:
hocus-pocus:
main: HocusPocus.hs
source-dirs: cmd
dependencies:
- aeson
- magic-wormhole
- optparse-applicative
- spake2 >= 0.4.3
- text
tests:
tasty:
main: Tasty.hs
source-dirs: tests
dependencies:
- aeson
- bytestring
- hedgehog
- magic-wormhole
- memory
- process
- saltine >= 0.2.0.0
- spake2 >= 0.4.3
- stm
- tasty
- tasty-hedgehog
- hspec >= 2.8.3 && <3.0
- tasty-hspec >= 1.2 && <2.0
- hspec-expectations >= 0.8.1 && <1.0
# These are only for tests.
data-files:
- tests/python/derive_phase_key.py
- tests/python/nacl_exchange.py
- tests/python/spake2_exchange.py
- tests/python/version_exchange.py
extra-source-files:
- CHANGELOG