|
|
@ -1,13 +1,13 @@ |
|
|
|
[package] |
|
|
|
[package] |
|
|
|
name = "lmdb-rkv" |
|
|
|
name = "lmdb-lofire" |
|
|
|
# NB: When modifying, also modify html_root_url in lib.rs |
|
|
|
# NB: When modifying, also modify html_root_url in lib.rs |
|
|
|
version = "0.14.0" |
|
|
|
version = "0.14.0" |
|
|
|
authors = ["Dan Burkert <dan@danburkert.com>", "Victor Porof <vporof@mozilla.com>"] |
|
|
|
authors = ["NikoPLP <info@parlepeuple.fr>"] |
|
|
|
license = "Apache-2.0" |
|
|
|
license = "Apache-2.0" |
|
|
|
description = "Idiomatic and safe LMDB wrapper." |
|
|
|
description = "Idiomatic and safe LMDB wrapper." |
|
|
|
documentation = "https://docs.rs/lmdb-rkv" |
|
|
|
documentation = "https://docs.rs/lmdb-lofire" |
|
|
|
homepage = "https://github.com/mozilla/lmdb-rs" |
|
|
|
homepage = "https://github.com/nikoPLP/lmdb-rs" |
|
|
|
repository = "https://github.com/mozilla/lmdb-rs.git" |
|
|
|
repository = "https://github.com/nikoPLP/lmdb-rs.git" |
|
|
|
readme = "README.md" |
|
|
|
readme = "README.md" |
|
|
|
keywords = ["LMDB", "database", "storage-engine", "bindings", "library"] |
|
|
|
keywords = ["LMDB", "database", "storage-engine", "bindings", "library"] |
|
|
|
categories = ["database"] |
|
|
|
categories = ["database"] |
|
|
@ -24,8 +24,8 @@ exclude = [ |
|
|
|
name = "lmdb" |
|
|
|
name = "lmdb" |
|
|
|
|
|
|
|
|
|
|
|
[badges] |
|
|
|
[badges] |
|
|
|
travis-ci = { repository = "mozilla/lmdb-rs" } |
|
|
|
travis-ci = { repository = "nikoPLP/lmdb-rs" } |
|
|
|
appveyor = { repository = "mozilla/lmdb-rs" } |
|
|
|
appveyor = { repository = "nikoPLP/lmdb-rs" } |
|
|
|
|
|
|
|
|
|
|
|
[workspace] |
|
|
|
[workspace] |
|
|
|
members = [ |
|
|
|
members = [ |
|
|
@ -37,15 +37,15 @@ bitflags = "1" |
|
|
|
byteorder = "1" |
|
|
|
byteorder = "1" |
|
|
|
libc = "0.2" |
|
|
|
libc = "0.2" |
|
|
|
|
|
|
|
|
|
|
|
# In order to ensure that we test lmdb-rkv in CI against the in-tree version |
|
|
|
# In order to ensure that we test lmdb-lofire in CI against the in-tree version |
|
|
|
# of lmdb-rkv-sys, we specify the dependency as a path here. |
|
|
|
# of lmdb-lofire-sys, we specify the dependency as a path here. |
|
|
|
# |
|
|
|
# |
|
|
|
# But we can't publish the lmdb-rkv crate to crates.io with a path dependency, |
|
|
|
# But we can't publish the lmdb-lofire crate to crates.io with a path dependency, |
|
|
|
# so we have to temporarily change this to point to the current version |
|
|
|
# so we have to temporarily change this to point to the current version |
|
|
|
# of lmdb-rkv-sys on crates.io when publishing lmdb-rkv to that crate registry. |
|
|
|
# of lmdb-lofire-sys on crates.io when publishing lmdb-lofire to that crate registry. |
|
|
|
# |
|
|
|
# |
|
|
|
# (See "Publishing to crates.io" in README.md for more information.) |
|
|
|
# (See "Publishing to crates.io" in README.md for more information.) |
|
|
|
lmdb-rkv-sys = { path = "./lmdb-sys" } |
|
|
|
lmdb-lofire-sys = { path = "./lmdb-sys" } |
|
|
|
|
|
|
|
|
|
|
|
[dev-dependencies] |
|
|
|
[dev-dependencies] |
|
|
|
rand = "0.4" |
|
|
|
rand = "0.4" |
|
|
@ -53,6 +53,6 @@ tempdir = "0.3" |
|
|
|
|
|
|
|
|
|
|
|
[features] |
|
|
|
[features] |
|
|
|
default = [] |
|
|
|
default = [] |
|
|
|
with-asan = ["lmdb-rkv-sys/with-asan"] |
|
|
|
with-asan = ["lmdb-lofire-sys/with-asan"] |
|
|
|
with-fuzzer = ["lmdb-rkv-sys/with-fuzzer"] |
|
|
|
with-fuzzer = ["lmdb-lofire-sys/with-fuzzer"] |
|
|
|
with-fuzzer-no-link = ["lmdb-rkv-sys/with-fuzzer-no-link"] |
|
|
|
with-fuzzer-no-link = ["lmdb-lofire-sys/with-fuzzer-no-link"] |
|
|
|