view Cargo.toml @ 590:3ac181023b24

Release v1.0.5
author Lewin Bormann <lbo@spheniscida.de>
date Fri, 06 Jan 2023 23:31:44 +0100
parents c0454e18fca0
children d819c7d21878
line wrap: on
line source

[package]
name = "rusty-leveldb"
version = "1.0.5"
authors = ["Lewin Bormann <lbo@spheniscida.de>"]
description = "A compatible re-implementation of LevelDB in Rust"
homepage = "https://github.com/dermesser/leveldb-rs"
repository = "https://github.com/dermesser/leveldb-rs"
readme = "README.md"
keywords = ["LevelDB", "key-value", "database", "SSTable", "Google"]
license = "MIT"
publish = true
edition = "2018"
include = ["src/**/*", "src/*", "Cargo.toml", "LICENSE", "README.md"]

[dependencies]
crc = "1.8"
integer-encoding = "3.0"
rand = "0.7"
snap = "1.0"
errno = "0.2"
fs2 = "0.4.3"

tokio = { optional = true, features = ["rt", "sync"], version = ">= 1.21" }

[features]
default = []
async = ["tokio"]

[dev-dependencies]
time-test = "0.2"
bencher = "0.1"

[[bench]]
name = "maps_bench"
harness = false
path = "src/benches/maps_bench.rs"

[workspace]
members = ["examples/write-a-lot", "examples/leveldb-tool", "examples/word-analyze",  "examples/stresstest", "examples/asyncdb"]