packages feed

heptapod-0.2024.8.16: heptapod.cabal

cabal-version: 2.2
category: Data
description: Heptapod generates UUIDv7 values.
extra-doc-files:
  CHANGELOG.md
  README.md

license-file: LICENSE.txt
license: MIT
maintainer: Taylor Fausak
name: heptapod
synopsis: Generate UUIDv7 values.
version: 0.2024.8.16

source-repository head
  location: https://github.com/tfausak/heptapod
  type: git

flag pedantic
  default: False
  manual: True

common library
  build-depends: base ^>=4.18.0.0 || ^>=4.19.0.0 || ^>=4.20.0.0
  default-language: Haskell2010
  ghc-options:
    -Weverything
    -Wno-implicit-prelude
    -Wno-missing-export-lists
    -Wno-missing-safe-haskell-mode
    -Wno-prepositive-qualified-module
    -Wno-safe
    -Wno-unsafe

  if flag(pedantic)
    ghc-options: -Werror

library
  import: library
  build-depends:
    bytestring ^>=0.11.5.3 || ^>=0.12.1.0,
    entropy ^>=0.4.1.10,
    time ^>=1.12.2 || ^>=1.14,
    uuid-types ^>=1.0.6,

  -- cabal-gild: discover source/library
  exposed-modules: Heptapod
  hs-source-dirs: source/library