87 lines
1.6 KiB
Plaintext
87 lines
1.6 KiB
Plaintext
cabal-version: 2.4
|
|
name: based
|
|
version: 0.4.3.0
|
|
license-file: LICENSE
|
|
extra-source-files: CHANGELOG.md
|
|
author: Stefan Friese
|
|
|
|
library
|
|
hs-source-dirs: src
|
|
exposed-modules:
|
|
Encoding.Base2
|
|
Encoding.Base8
|
|
Encoding.Base10
|
|
Encoding.Base16
|
|
Encoding.Base32
|
|
Encoding.Base45
|
|
Encoding.Base58
|
|
Encoding.Base62
|
|
Encoding.Base64
|
|
Encoding.Base85
|
|
Encoding.Base91
|
|
Encoding.Url
|
|
Encoding.QuotedPrintable
|
|
Encoding.UnixToUnix
|
|
Encoding.Xx
|
|
Encoding.Yenc
|
|
Encoding.Rotate
|
|
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,
|
|
base64-bytestring
|
|
default-language: Haskell2010
|
|
|
|
executable based
|
|
hs-source-dirs: app
|
|
main-is: Main.hs
|
|
-- other-modules: MyLib
|
|
build-depends:
|
|
-- base ^>= 4.13.0.0,
|
|
base,
|
|
based,
|
|
cmdargs,
|
|
utf8-string,
|
|
bytestring,
|
|
-- base64-bytestring,
|
|
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,
|
|
-- hs-source-dirs:
|
|
default-language: Haskell2010
|
|
|
|
test-suite based-test
|
|
type: exitcode-stdio-1.0
|
|
hs-source-dirs: test
|
|
main-is: Main.hs
|
|
build-depends:
|
|
base,
|
|
based,
|
|
HUnit
|
|
default-language: Haskell2010
|