-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
36 lines (32 loc) · 865 Bytes
/
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
name: bit-protocol
version: 0.2.3.0
synopsis: Encode binary protocols with some odd bit numbers into a bytestring
description: Encode binary protocols with some odd bit numbers into a bytestring.
homepage: https://github.com/k-bx/bit-protocol#readme
license: BSD3
author: Kostiantyn Rybnikov
maintainer: [email protected]
copyright: Kostiantyn Rybnikov
category: Data, Parsing, Bits, Bytes, Protocols
extra-source-files:
- README.md
dependencies:
- base >= 4.7 && < 5
- base64-bytestring
- bytestring
- dlist
- ghc-prim
- QuickCheck
library:
source-dirs: src
ghc-options:
-Wall
tests:
test:
main: tests.hs
source-dirs: test
dependencies:
- bit-protocol
- tasty
- tasty-hunit
- tasty-quickcheck