haskell-hexstring/package.yaml

47 lines
913 B
YAML
Raw Normal View History

2024-02-05 16:58:14 +00:00
name: hexstring
2024-09-04 19:42:08 +00:00
version: 0.12.2.0
2024-02-05 16:58:14 +00:00
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
2024-02-05 21:18:01 +00:00
- generics-sop
- borsh >= 0.2
- foreign-rust
2024-09-04 19:42:08 +00:00
- servant
2024-02-05 16:58:14 +00:00
tests:
hextring-test:
main: Main.hs
source-dirs: test
dependencies:
- hexstring
- binary
- text
- bytestring
- base16-bytestring
- aeson
- hspec