packages feed

random-access-file-0.1.0.0: random-access-file.cabal

cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.31.1.
--
-- see: https://github.com/sol/hpack
--
-- hash: d3a26fdb60817d0a049223a739346a7af2298e7b58ed74c1d10b57f96e40d2c4

name:           random-access-file
version:        0.1.0.0
synopsis:       Random file access methods, supporting application-level page cache.
description:    Please see the README on GitHub at <https://github.com/portnov/random-access-file#readme>
category:       System
homepage:       https://github.com/portnov/random-access-file#readme
bug-reports:    https://github.com/portnov/random-access-file/issues
author:         Ilya V. Portnov
maintainer:     portnov84@rambler.ru
copyright:      2018 Ilya Portnov
license:        BSD3
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    README.md
    ChangeLog.md

source-repository head
  type: git
  location: https://github.com/portnov/random-access-file

library
  exposed-modules:
      System.IO.RandomAccessFile
      System.IO.RandomAccessFile.Cached
      System.IO.RandomAccessFile.Common
      System.IO.RandomAccessFile.MMap
      System.IO.RandomAccessFile.Simple
      System.IO.RandomAccessFile.Threaded
  other-modules:
      Paths_random_access_file
  hs-source-dirs:
      src
  ghc-options: -fwarn-unused-imports
  build-depends:
      base >=4.7 && <5
    , bytestring
    , concurrent-extra
    , containers
    , directory
    , lrucaching
    , stm
    , unix
    , unix-bytestring
    , unix-memory
  default-language: Haskell2010

benchmark random-access-file-benchmark
  type: exitcode-stdio-1.0
  main-is: Main.hs
  other-modules:
      Paths_random_access_file
  hs-source-dirs:
      benchmark
  ghc-options: -threaded -rtsopts -with-rtsopts=-N -fwarn-unused-imports
  build-depends:
      base >=4.7 && <5
    , bytestring
    , concurrent-extra
    , containers
    , criterion
    , directory
    , lrucaching
    , mwc-random
    , random
    , random-access-file
    , stm
    , unix
    , unix-bytestring
    , unix-memory
    , vector
  default-language: Haskell2010