forked from kim/leveldb-haskell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rocksdb-haskell.cabal
77 lines (68 loc) · 2.72 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
name: rocksdb-haskell
version: 1.0.2
synopsis: Haskell bindings to RocksDB
homepage: http://github.com/serokell/rocksdb-haskell
bug-reports: http://github.com/serokell/rocksdb-haskell/issues
license: BSD3
license-file: LICENSE
author: Kim Altintop, Alexander Thiemann et.al. (see AUTHORS file)
maintainer: Serokell <[email protected]>
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 == 8.0.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/serokell/rocksdb-haskell.git
library
exposed-modules: Database.RocksDB
, Database.RocksDB.Base
, Database.RocksDB.C
, Database.RocksDB.Internal
, Database.RocksDB.Iterator
, Database.RocksDB.Types
default-language: Haskell2010
other-extensions: CPP
, ForeignFunctionInterface
, EmptyDataDecls
, RecordWildCards
build-depends: base >= 3 && < 5
, binary
, bytestring
, data-default
, directory
, filepath
, resourcet > 0.3.2
, transformers
ghc-options: -Wall -funbox-strict-fields
hs-source-dirs: src
extra-libraries: rocksdb
if os(darwin) && arch(aarch64)
include-dirs: /opt/homebrew/include
extra-lib-dirs: /opt/homebrew/lib
test-suite rocksdb-tests
ghc-options: -Wall
main-is: tests.hs
type: exitcode-stdio-1.0
hs-source-dirs: tests
build-depends: base >= 3 && < 5
, rocksdb-haskell
, hspec >= 1.8
, process >= 1.1.0.2
, bytestring >= 0.10.4.0
, data-default
, resourcet
, transformers
, temporary
, hspec-expectations
, QuickCheck
default-language: Haskell2010