# 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 = "2018" name = "garage_db" version = "1.0.1" authors = ["Alex Auvolat "] description = "Abstraction over multiple key/value storage engines that supports transactions" readme = "README.md" license = "AGPL-3.0" repository = "https://git.deuxfleurs.fr/Deuxfleurs/garage" resolver = "2" [lib] path = "lib.rs" [dependencies.err-derive] version = "0.3" [dependencies.heed] version = "0.11" features = ["lmdb"] optional = true default-features = false [dependencies.hexdump] version = "0.1" [dependencies.r2d2] version = "0.8" optional = true [dependencies.r2d2_sqlite] version = "0.24" optional = true [dependencies.rusqlite] version = "0.31.0" features = ["backup"] optional = true [dependencies.tracing] version = "0.1" [dev-dependencies.mktemp] version = "0.5" [features] bundled-libs = ["rusqlite?/bundled"] default = [ "lmdb", "sqlite", ] lmdb = ["heed"] sqlite = [ "rusqlite", "r2d2", "r2d2_sqlite", ]