-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCargo.toml
34 lines (29 loc) · 854 Bytes
/
Cargo.toml
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
[package]
name = "lmdb-zero"
version = "0.4.4"
authors = ["FullContact, Inc", "Jason Lingle"]
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/AltSysrq/lmdb-zero"
documentation = "https://docs.rs/lmdb-zero"
keywords = ["lmdb", "zero-copy", "btree"]
categories = ["database"]
description = """
An almost-safe, near-zero-cost, feature-complete, unabashedly non-abstract
wrapper around LMDB.
"""
[badges]
travis-ci = { repository = "AltSysrq/lmdb-zero" }
[dependencies]
liblmdb-sys = "0.2.2"
bitflags = "0.9.1"
libc = "0.2.14"
supercow = "0.1.0"
[dev-dependencies]
tempdir = "=0.3.4"
# These are redundant / not directly used dependencies which increased the
# required rust version in a minor version bump. Pinning them like this is
# necessary to test on Rust 1.12.0.
libc = "=0.2.18"
gcc = "=0.3.39"
rand = "=0.3.15"