# 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 = "pickledb" version = "0.5.1" authors = ["seladb "] description = "A lightweight and simple key-value store written in Rust, heavily inspired by Python's PickleDB (https://pythonhosted.org/pickleDB/)" homepage = "https://github.com/seladb/pickledb-rs" documentation = "http://docs.rs/pickledb" readme = "README.md" keywords = [ "database", "key-value-store", "db", "kv", "pickledb", ] categories = [ "database-implementations", "data-structures", ] license = "MIT" repository = "https://github.com/seladb/pickledb-rs" [[example]] name = "hello_world" path = "examples/hello_world/src/main.rs" [[example]] name = "lists" path = "examples/lists/src/main.rs" [dependencies.bincode] version = "1.0" optional = true [dependencies.serde] version = "1.0" features = ["derive"] [dependencies.serde_cbor] version = "0.11" optional = true [dependencies.serde_json] version = "1.0" optional = true [dependencies.serde_yaml] version = "0.8" optional = true [dev-dependencies.fs2] version = "0.4" [dev-dependencies.matches] version = "0.1" [dev-dependencies.rand] version = "0.6" [dev-dependencies.rstest] version = "0.2" [features] bincode = ["dep:bincode"] cbor = ["dep:serde_cbor"] default = ["json"] json = ["dep:serde_json"] yaml = ["dep:serde_yaml"] [badges.travis-ci] repository = "seladb/pickledb-rs"