actix-storage 0.2.0

General key value storage for actix-web
Documentation
[dependencies.actix]
default-features = false
version = "0.10"

[dependencies.actix-rt]
optional = true
version = "1.1"

[dependencies.actix-web]
default-features = false
version = "3"

[dependencies.async-trait]
version = "0.1"

[dependencies.bincode]
optional = true
version = "1.3"

[dependencies.futures]
optional = true
version = "0.3"

[dependencies.log]
version = "0.4"

[dependencies.quick-xml]
features = ["serialize"]
optional = true
version = "0.22"

[dependencies.ron]
optional = true
version = "0.6"

[dependencies.serde]
optional = true
version = "1.0"

[dependencies.serde_cbor]
optional = true
version = "0.11"

[dependencies.serde_json]
optional = true
version = "1.0"

[dependencies.serde_yaml]
optional = true
version = "0.8"

[dependencies.thiserror]
version = "1"
[dev-dependencies.actix-rt]
version = "1.1"

[features]
all = ["serde-json", "serde-cbor", "serde-yaml", "serde-bincode", "serde-ron", "serde-xml"]
serde-bincode = ["with-serde", "bincode"]
serde-cbor = ["with-serde", "serde_cbor"]
serde-json = ["with-serde", "serde_json"]
serde-ron = ["with-serde", "ron"]
serde-xml = ["with-serde", "quick-xml"]
serde-yaml = ["with-serde", "serde_yaml"]
tests = ["actix-rt", "futures"]
with-serde = ["serde"]

[package]
authors = ["Pouya M. B. <pooyamb@gmail.com>"]
categories = ["asynchronous", "caching", "web-programming::http-server"]
description = "General key value storage for actix-web"
documentation = "https://docs.rs/actix-storage"
edition = "2018"
keywords = ["actix", "storage", "web", "async"]
license = "MIT OR Apache-2.0"
name = "actix-storage"
readme = "README.md"
repository = "https://github.com/pooyamb/actix-storage/"
version = "0.2.0"
[package.metadata.docs.rs]
features = ["all"]