# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "rusty-leveldb" version = "3.0.2" authors = ["Lewin Bormann "] include = [ "src/**/*", "src/*", "Cargo.toml", "LICENSE", "README.md", ] publish = true description = "A compatible re-implementation of LevelDB in Rust" homepage = "https://github.com/dermesser/leveldb-rs" readme = "README.md" keywords = [ "LevelDB", "key-value", "database", "SSTable", "Google", ] license = "MIT" repository = "https://github.com/dermesser/leveldb-rs" [lib] crate-type = [ "cdylib", "rlib", ] [[bench]] name = "maps_bench" path = "src/benches/maps_bench.rs" harness = false [dependencies.async-std] version = "1.12.0" optional = true [dependencies.crc] version = "3.2" [dependencies.errno] version = "0.2" optional = true [dependencies.fs2] version = "0.4.3" optional = true [dependencies.integer-encoding] version = "3.0" [dependencies.rand] version = "0.8.5" [dependencies.snap] version = "1.0" [dependencies.tokio] version = "1.39.3" features = [ "rt", "sync", ] optional = true [dev-dependencies.bencher] version = "0.1" [dev-dependencies.time-test] version = "0.3" [features] async = ["asyncdb-tokio"] asyncdb-async-std = ["async-std"] asyncdb-tokio = ["tokio"] default = ["fs"] fs = [ "errno", "fs2", ]