based/based.cabal

98 lines
1.8 KiB
Plaintext
Raw Normal View History

2022-05-17 00:23:30 +02:00
cabal-version: 2.4
name: based
2024-09-25 23:36:19 +02:00
version: 0.4.5.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
hs-source-dirs: src
2023-07-25 23:17:25 +02:00
exposed-modules:
Encoding.Base2
Encoding.Base8
Encoding.Base10
Encoding.Base16
Encoding.Base32
2024-05-23 22:32:15 +02:00
Encoding.Base45
Encoding.Base58
Encoding.Base62
Encoding.Base64
Encoding.Base85
Encoding.Base91
Encoding.Url
Encoding.QuotedPrintable
Encoding.UnixToUnix
Encoding.Xx
Encoding.Yenc
Encoding.Rotate
Encoding.LetterToNumber
2024-06-26 23:56:59 +02:00
Encoding.Morse
2024-07-02 23:02:51 +02:00
Encoding.Tap
Encoding.Solve
2023-07-25 23:17:25 +02:00
other-modules:
-- Data.Bytes.Text.Ascii
build-depends:
-- base ^>= 4.13.0.0,
-- byteslice == 0.2.6.0,
base,
sandi,
base62,
base91,
utf8-string,
byteslice,
bytestring,
HTTP,
hxt,
haskoin-core,
text,
primitive,
regex-tdfa,
2024-06-26 23:56:59 +02:00
base64-bytestring,
2024-07-02 23:02:51 +02:00
containers,
split,
2024-06-26 23:56:59 +02:00
MorseCode
2022-05-17 00:23:30 +02:00
default-language: Haskell2010
executable based
hs-source-dirs: app
main-is: Main.hs
-- other-modules: MyLib
2023-07-25 23:17:25 +02:00
build-depends:
-- base ^>= 4.13.0.0,
base,
based,
2023-07-25 23:17:25 +02:00
cmdargs,
utf8-string,
bytestring,
-- base64-bytestring,
2024-05-05 21:54:19 +02:00
regex-tdfa
-- 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