forked from ifesdjeen/leveldb-haskell
-
Notifications
You must be signed in to change notification settings - Fork 2
/
rocksdb-haskell.cabal
55 lines (48 loc) · 2.1 KB
/
rocksdb-haskell.cabal
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: rocksdb-haskell
version: 0.1.0
synopsis: Haskell bindings to RocksDB
homepage: http://github.com/agrafix/rocksdb-haskell
bug-reports: http://github.com/agrafix/rocksdb-haskell/issues
license: BSD3
license-file: LICENSE
author: Kim Altintop, Alexander Thiemann et.al. (see AUTHORS file)
maintainer: mail@agrafix.net
copyright: Copyright (c) 2012-2014 The leveldb-haskell Authors, Copyright (c) 2014 The rocksdb-haskell Authors
category: Database, FFI
stability: Experimental
build-type: Simple
cabal-version: >=1.10
tested-with: GHC == 7.2.2, GHC == 7.4.1
description:
From <http://rocksdb.org>:
.
RocksDB is an embeddable persistent key-value store for fast storage. RocksDB can also be the foundation for a client-server database but our current focus is on embedded workloads.
.
RocksDB builds on LevelDB to be scalable to run on servers with many CPU cores, to efficiently use fast storage, to support IO-bound, in-memory and write-once workloads, and to be flexible to allow for innovation.
extra-source-files: Readme.md, AUTHORS
source-repository head
type: git
location: git://github.com/agrafix/rocksdb-haskell.git
library
exposed-modules: Database.RocksDB
, Database.RocksDB.Base
, Database.RocksDB.C
, Database.RocksDB.Internal
, Database.RocksDB.Iterator
, Database.RocksDB.MonadResource
, Database.RocksDB.Types
default-language: Haskell2010
other-extensions: CPP
, ForeignFunctionInterface
, EmptyDataDecls
, RecordWildCards
build-depends: base >= 3 && < 5
, bytestring
, data-default
, filepath
, resourcet > 0.3.2
, transformers
ghc-options: -Wall -rtsopts -funbox-strict-fields
ghc-prof-options: -prof -auto-all
hs-source-dirs: src
extra-libraries: rocksdb