1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
cabal-version: 3.0
name: primitive-addr
version: 0.1.0.3
synopsis: Addresses to unmanaged memory
description:
This library provides the `Data.Primitive.Addr` module
that was a part of the `primitive` library before `primitive-0.7.0.0`.
homepage: https://github.com/byteverse/primitive-addr
bug-reports: https://github.com/byteverse/primitive-addr/issues
license: BSD-3-Clause
license-file: LICENSE
author: Andrew Martin
maintainer: amartin@layer3com.com
copyright: 2019 Andrew Martin
category: Data
extra-doc-files: CHANGELOG.md
tested-with: GHC ==9.4.8 || ==9.6.3 || ==9.8.1
common build-settings
default-language: Haskell2010
ghc-options: -Wall -Wunused-packages
build-depends: base >=4.17.2.1 && <5
library
import: build-settings
hs-source-dirs: src
exposed-modules: Data.Primitive.Addr
build-depends: primitive >=0.6.4 && <0.10
source-repository head
type: git
location: git://github.com/byteverse/primitive-addr.git
|