2022-05-17 00:23:30 +02:00
|
|
|
cabal-version: 2.4
|
|
|
|
name: based
|
2023-07-25 23:17:25 +02:00
|
|
|
version: 0.4.2.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
|
|
|
|
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
|
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,
|
|
|
|
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-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
|