2022-05-17 00:23:30 +02:00
|
|
|
cabal-version: 2.4
|
|
|
|
name: based
|
2024-05-22 22:33:27 +02:00
|
|
|
version: 0.4.3.0
|
2022-05-17 00:23:30 +02:00
|
|
|
license-file: LICENSE
|
|
|
|
extra-source-files: CHANGELOG.md
|
2023-07-25 23:17:25 +02:00
|
|
|
author: Stefan Friese
|
2022-05-17 00:23:30 +02:00
|
|
|
|
|
|
|
library
|
2024-05-19 00:39:34 +02:00
|
|
|
hs-source-dirs: src
|
2023-07-25 23:17:25 +02:00
|
|
|
exposed-modules:
|
2024-05-19 00:39:34 +02:00
|
|
|
Encoding.Base2
|
|
|
|
Encoding.Base8
|
|
|
|
Encoding.Base10
|
|
|
|
Encoding.Base16
|
2024-05-19 13:23:39 +02:00
|
|
|
Encoding.Base32
|
2024-05-23 22:32:15 +02:00
|
|
|
Encoding.Base45
|
2024-05-19 13:23:39 +02:00
|
|
|
Encoding.Base58
|
|
|
|
Encoding.Base62
|
2024-05-19 00:39:34 +02:00
|
|
|
Encoding.Base64
|
2024-05-19 13:23:39 +02:00
|
|
|
Encoding.Base85
|
2024-05-19 00:39:34 +02:00
|
|
|
Encoding.Base91
|
2024-05-19 13:23:39 +02:00
|
|
|
Encoding.Url
|
|
|
|
Encoding.QuotedPrintable
|
|
|
|
Encoding.UnixToUnix
|
|
|
|
Encoding.Xx
|
|
|
|
Encoding.Yenc
|
2024-05-22 21:58:40 +02:00
|
|
|
Encoding.Rotate
|
2023-07-25 23:17:25 +02:00
|
|
|
other-modules:
|
|
|
|
-- Data.Bytes.Text.Ascii
|
|
|
|
build-depends:
|
2024-04-20 01:20:53 +02:00
|
|
|
-- base ^>= 4.13.0.0,
|
|
|
|
-- byteslice == 0.2.6.0,
|
2024-05-19 13:23:39 +02:00
|
|
|
base,
|
2024-05-19 00:39:34 +02:00
|
|
|
sandi,
|
2024-05-19 13:23:39 +02:00
|
|
|
base62,
|
2024-05-19 00:39:34 +02:00
|
|
|
base91,
|
|
|
|
utf8-string,
|
2024-04-20 01:20:53 +02:00
|
|
|
byteslice,
|
2024-05-19 00:39:34 +02:00
|
|
|
bytestring,
|
2024-05-19 13:23:39 +02:00
|
|
|
HTTP,
|
2024-05-19 00:39:34 +02:00
|
|
|
hxt,
|
2024-05-19 13:23:39 +02:00
|
|
|
haskoin-core,
|
2024-05-19 00:39:34 +02:00
|
|
|
text,
|
2024-06-09 13:12:23 +02:00
|
|
|
primitive,
|
2024-05-19 00:39:34 +02:00
|
|
|
base64-bytestring
|
2022-05-17 00:23:30 +02:00
|
|
|
default-language: Haskell2010
|
|
|
|
|
|
|
|
executable based
|
2024-05-19 00:39:34 +02:00
|
|
|
hs-source-dirs: app
|
2024-05-19 13:23:39 +02:00
|
|
|
main-is: Main.hs
|
2024-05-19 00:39:34 +02:00
|
|
|
-- other-modules: MyLib
|
2023-07-25 23:17:25 +02:00
|
|
|
build-depends:
|
2024-04-20 01:20:53 +02:00
|
|
|
-- base ^>= 4.13.0.0,
|
|
|
|
base,
|
2024-05-19 00:39:34 +02:00
|
|
|
based,
|
2023-07-25 23:17:25 +02:00
|
|
|
cmdargs,
|
|
|
|
utf8-string,
|
|
|
|
bytestring,
|
2024-06-07 18:09:20 +02:00
|
|
|
-- base64-bytestring,
|
2024-05-05 21:54:19 +02:00
|
|
|
regex-tdfa
|
2024-05-19 13:23:39 +02:00
|
|
|
-- sandi,
|
|
|
|
-- base62,
|
|
|
|
-- base91,
|
|
|
|
-- byteslice == 0.2.6.0,
|
|
|
|
-- byteslice,
|
|
|
|
-- either-unwrap,
|
|
|
|
-- text-show,
|
|
|
|
-- hxt,
|
|
|
|
-- haskoin-core,
|
|
|
|
-- text,
|
|
|
|
-- bytes,
|
|
|
|
-- cborg,
|
|
|
|
-- text-latin1,
|
|
|
|
-- HTTP,
|
|
|
|
-- base64-bytestring,
|
2022-05-17 00:23:30 +02:00
|
|
|
-- hs-source-dirs:
|
|
|
|
default-language: Haskell2010
|
2024-05-19 15:22:13 +02:00
|
|
|
|
|
|
|
test-suite based-test
|
|
|
|
type: exitcode-stdio-1.0
|
|
|
|
hs-source-dirs: test
|
|
|
|
main-is: Main.hs
|
|
|
|
build-depends:
|
|
|
|
base,
|
|
|
|
based,
|
2024-06-08 23:55:11 +02:00
|
|
|
bytestring,
|
|
|
|
utf8-string,
|
2024-05-19 15:22:13 +02:00
|
|
|
HUnit
|
|
|
|
default-language: Haskell2010
|