view Cargo.toml @ 575:12007b450b57 v1.0.3

Release v1.0.3 This fixes a stupid, but (usually) harmless bug in the read sampling logic.
author Lewin Bormann <lbo@spheniscida.de>
date Wed, 20 Jul 2022 12:39:13 -0700
parents 7575b9ee7b71
children 4276ae011066
line wrap: on
line source

[package]
name = "rusty-leveldb"
version = "1.0.3"
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"

[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/kvserver", "examples/stresstest"]