bits-show-0.0.0.0: bits-show.cabal
cabal-version: 3.0
name: bits-show
version: 0.0.0.0
synopsis: Showing data as strings of 0 and 1
category: Bit, Text
description:
The @showFiniteBits@ function, for a type belonging to
the @FiniteBits@ class, displays the bits as a string.
license: Apache-2.0
license-file: license.txt
author: Chris Martin
maintainer: Chris Martin & Julie Moronuki <hello@typeclasses.com>
homepage: https://github.com/typeclasses/bits-show
bug-reports: https://github.com/typeclasses/bits-show/issues
extra-source-files: *.md
common base
default-language: GHC2021
build-depends: base ^>= 4.16 || ^>= 4.17 || ^>= 4.18
library
import: base
exposed-modules: Bits.Show
hs-source-dirs: library
test-suite test
import: base
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
build-depends:
, bits-show
, hspec ^>= 2.8.5 || ^>= 2.9 || ^>= 2.10