forked from reach-sh/haskell-hexstring
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.yaml
More file actions
42 lines (37 loc) · 840 Bytes
/
package.yaml
File metadata and controls
42 lines (37 loc) · 840 Bytes
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
name: hexstring
version: 0.12.0
git: "https://git.vergara.tech/Vergara_Tech/haskell-hexstring"
license: MIT
author:
- "Rene Vergara"
- "Leon Mergen"
maintainer: "pitmutt@vergara.tech"
copyright:
- "(c) 2015 Leon Mergen"
- "(c) 2024 Rene Vergara"
extra-source-files:
- README.md
synopsis: Fast and safe representation of a hex string
description: Provides an interface for converting any object that has a 'Binary' instance to and from a hexadecimal Text representation.
dependencies:
- base >= 4.7 && < 5
library:
source-dirs: src
dependencies:
- binary
- text
- bytestring
- base16-bytestring
- aeson
tests:
hextring-test:
main: Main.hs
source-dirs: test
dependencies:
- hexstring
- binary
- text
- bytestring
- base16-bytestring
- aeson
- hspec