Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Codec/Compression/Snappy/Lazy.hsc
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ module Codec.Compression.Snappy.Lazy

import Codec.Compression.Snappy.Internal (check, maxCompressedLength)
import Control.Exception (bracket)
import Data.ByteString.Internal hiding (ByteString)
import Data.ByteString.Internal hiding (ByteString, BS)
import Data.ByteString.Lazy.Internal (ByteString(..))
import Data.Word (Word8, Word32)
import Foreign.C.Types (CInt(..), CSize(..))
Expand Down
8 changes: 4 additions & 4 deletions snappy.cabal
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
cabal-version: 2.2
name: snappy
version: 0.2.0.2
homepage: https://github.com/bos/snappy
Expand All @@ -7,14 +8,13 @@ synopsis:
description:
This library provides fast, pure Haskell bindings to Google's Snappy
compression and decompression library: <http://code.google.com/p/snappy/>
license: BSD3
license: BSD-3-Clause
license-file: LICENSE
author: Bryan O'Sullivan <bos@serpentine.com>
maintainer: Bryan O'Sullivan <bos@serpentine.com>
copyright: Copyright 2011 MailRank, Inc.
category: Codec, Compression
build-type: Simple
cabal-version: >= 1.8
extra-source-files:
README.md
include/hs_snappy.h
Expand All @@ -23,11 +23,11 @@ extra-source-files:
tests/Speedy.hs

library
c-sources: cbits/hs_snappy.cpp
cxx-sources: cbits/hs_snappy.cpp
include-dirs: include
extra-libraries: snappy stdc++

cc-options: -Wall
cxx-options: -Wall -std=c++11
ghc-options: -Wall

build-depends: base < 5, bytestring
Expand Down