[package] name = "speedb" description = "Rust wrapper for Speedb" version = "0.0.5" edition = "2018" rust-version = "1.63" authors = ["Tyler Neely ", "David Greenberg "] repository = "https://github.com/speedb-io/rust-speedb" license = "Apache-2.0" categories = [ "database" ] keywords = ["database", "embedded", "LSM-tree", "persistence"] homepage = "https://github.com/speedb-io/rust-speedb" exclude = [ ".gitignore", ".travis.yml", "deploy.sh", "test/**/*", ] [workspace] members = ["libspeedb-sys"] [features] default = ["snappy", "lz4", "zstd", "zlib", "bzip2"] jemalloc = ["libspeedb-sys/jemalloc"] io-uring = ["libspeedb-sys/io-uring"] valgrind = [] snappy = ["libspeedb-sys/snappy"] lz4 = ["libspeedb-sys/lz4"] zstd = ["libspeedb-sys/zstd"] zlib = ["libspeedb-sys/zlib"] bzip2 = ["libspeedb-sys/bzip2"] rtti = ["libspeedb-sys/rtti"] multi-threaded-cf = [] serde1 = ["serde"] [dependencies] libc = "0.2" libspeedb-sys = { path = "libspeedb-sys", version = "0.0.5" } serde = { version = "1", features = [ "derive" ], optional = true } [dev-dependencies] trybuild = "1.0" tempfile = "3.1" pretty_assertions = "1.0" bincode = "1.3" serde = { version = "1", features = [ "derive" ] }