39 lines
1.4 KiB
Plaintext
39 lines
1.4 KiB
Plaintext
|
cabal-version: >=1.10
|
||
|
|
||
|
name: streamly-filesytem
|
||
|
version: 0.1.0.0
|
||
|
synopsis: Beautiful file streaming
|
||
|
-- description:
|
||
|
bug-reports: https://github.com/hasufell/streamly-filesystem/issues
|
||
|
license: BSD3
|
||
|
license-file: LICENSE
|
||
|
author: Julian Ospald <hasufell@posteo.de>
|
||
|
maintainer: Julian Ospald <hasufell@posteo.de>
|
||
|
copyright: Julian Ospald <hasufell@posteo.de> 2020
|
||
|
category: Streaming
|
||
|
build-type: Simple
|
||
|
extra-source-files: CHANGELOG.md
|
||
|
|
||
|
library
|
||
|
if os(windows) -- not supported yet
|
||
|
build-depends: unbuildable<0
|
||
|
buildable: False
|
||
|
exposed-modules: Streamly.External.FileSystem.Handle.Posix
|
||
|
-- other-modules:
|
||
|
-- other-extensions:
|
||
|
build-depends: base >= 4.12 && < 5
|
||
|
, bytestring >= 0.10
|
||
|
, hpath-directory >= 0.13
|
||
|
, safe-exceptions >= 0.1
|
||
|
, streamly >= 0.7
|
||
|
, streamly-bytestring >= 0.1.0.1
|
||
|
, unix >= 2.7
|
||
|
, word8 >= 0.1.3
|
||
|
hs-source-dirs: src
|
||
|
default-language: Haskell2010
|
||
|
GHC-Options: -Wall -O2 -fspec-constr-recursive=16 -fmax-worker-args=16
|
||
|
|
||
|
source-repository head
|
||
|
type: git
|
||
|
location: https://github.com/hasufell/streamly-filesystem
|