# 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 = "actix-storage" version = "0.3.0" authors = ["Pouya M. B. "] description = "General key value storage for actix-web" documentation = "https://docs.rs/actix-storage" readme = "README.md" keywords = [ "actix", "storage", "web", "async", ] categories = [ "asynchronous", "caching", "web-programming::http-server", ] license = "MIT OR Apache-2.0" repository = "https://github.com/pooyamb/actix-storage/" [package.metadata.docs.rs] features = ["all"] [dependencies.actix] version = "0.13.0" [dependencies.actix-web] version = "4.0.0" default-features = false [dependencies.async-trait] version = "0.1" [dependencies.bincode] version = "1.3" optional = true [dependencies.futures] version = "0.3" optional = true [dependencies.log] version = "0.4" [dependencies.quick-xml] version = "0.26.0" features = ["serialize"] optional = true [dependencies.ron] version = "0.8.0" optional = true [dependencies.serde] version = "1.0" optional = true [dependencies.serde_cbor] version = "0.11" optional = true [dependencies.serde_json] version = "1.0" optional = true [dependencies.serde_yaml] version = "0.8" optional = true [dependencies.thiserror] version = "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 = ["futures"] with-serde = ["serde"]