# 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 = "lsm" version = "0.4.1" authors = ["Kai Mast "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "An implementation of log-structured merge trees in pure Rust" readme = "README.md" keywords = [ "storage", "database", "async", ] license = "MIT" repository = "https://github.com/kaimast/lsm-rs" [lib] name = "lsm" path = "src/lib.rs" [[example]] name = "lsm-benchmark" path = "benchmarks/async.rs" [[test]] name = "basic" path = "tests/basic.rs" [[test]] name = "reopen" path = "tests/reopen.rs" [dependencies.async-trait] version = "0.1" [dependencies.bloomfilter] version = "1" optional = true [dependencies.byte-slice-cast] version = "1" [dependencies.cfg-if] version = "1" [dependencies.csv] version = "1" [dependencies.futures] version = "0.3" [dependencies.log] version = "0.4" [dependencies.lru] version = "0.12" [dependencies.memmap2] version = "0.9" [dependencies.parking_lot] version = "0.12" [dependencies.snap] version = "1" optional = true [dependencies.tokio] version = "1" features = [ "io-util", "sync", "macros", "tracing", ] default-features = false [dependencies.tokio-condvar] version = "0.3" features = ["parking_lot"] [dependencies.tokio-uring] version = "0.5" optional = true [dependencies.tokio-uring-executor] version = "0.1" optional = true package = "kioto-uring-executor" [dependencies.tracing] version = "0.1" features = ["attributes"] default-features = false [dependencies.zerocopy] version = "0.7" features = ["derive"] [dev-dependencies.clap] version = "4" features = ["derive"] [dev-dependencies.env_logger] version = "0.11" [dev-dependencies.tempfile] version = "3" [dev-dependencies.tokio] version = "1" features = ["rt-multi-thread"] default-features = false [dev-dependencies.tracing-subscriber] version = "0.3" default-features = false [dev-dependencies.tracing-tracy] version = "0.11" [features] async-io = [ "dep:tokio-uring", "dep:tokio-uring-executor", ] bloom-filters = ["dep:bloomfilter"] default = [ "snappy-compression", "bloom-filters", ] snappy-compression = ["dep:snap"] wisckey = []